trello-to-deck/Cargo.toml
Paul Campbell 6d234609e7
Some checks failed
Test / build (map[name:nightly]) (push) Successful in 2m18s
Test / build (map[name:stable]) (push) Successful in 2m17s
Release Please / Release-plz (push) Failing after 27s
feat: add command 'nextcloud card add-attachment'
2024-12-18 17:21:01 +00:00

32 lines
730 B
TOML

[package]
name = "trello-to-deck"
version = "0.1.0"
edition = "2021"
[dependencies]
bytes = "1.9"
clap = { version = "4.5", features = ["cargo", "derive"] }
color-eyre = "0.6"
derive_more = { version = "1.0", features = [
"as_ref",
"constructor",
"deref",
"from",
] }
# kxio = {path = "../kxio/"}
kxio = "4.0"
reqwest = { version = "0.12" , features = ["multipart", "stream"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.41", features = ["full"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"
[dev-dependencies]
assert2 = "0.3"
http = "1.2"
mutants = "0.0"
pretty_assertions = "1.4"
rstest = "0.23"
test-log = { version = "0.2", features = ["trace"] }