chore: update gitignore and add Cargo.lock
Some checks failed
Test / build (map[name:stable]) (push) Successful in 4m15s
Test / build (map[name:nightly]) (push) Successful in 4m45s
Release Please / Release-plz (push) Failing after 38s

This commit is contained in:
Paul Campbell 2024-12-31 15:27:29 +00:00
parent 61f4a36721
commit 1293442d5d
4 changed files with 3072 additions and 6 deletions

5
.gitignore vendored
View file

@ -3,17 +3,12 @@
# will have compiled files and executables
debug/
target/
Cargo.lock
# cargo-bin-run cache
.bin
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

3067
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -2,6 +2,10 @@
name = "trello-to-deck"
version = "0.1.0"
edition = "2021"
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
description = "Migrate your Trello Board to Nextcloud Deck"
license = "MIT"
repository = "https://git.kemitix.net/kemitix/trello-to-deck"
[dependencies]
all-colors = "0.0"

View file

@ -340,7 +340,7 @@ fn given_nextcloud_create_card_without_description(mock_net: &MockNet) {
"order": 16384,
"title": "Backlog",
"type":"plain"
}) // TODO: (#10) include card 'order' from trello 'pos'
})
.to_string(),
)
.respond(StatusCode::OK)