trello-to-deck/Cargo.toml
Paul Campbell de94004be3
Some checks failed
Test / build (map[name:stable]) (push) Successful in 2m50s
Test / build (map[name:nightly]) (push) Successful in 2m55s
Release Please / Release-plz (push) Failing after 21s
feat: add APIResult
This is a generic type that contains the raw JSON response and the parsed value as a Result.

fixup: APIResult

FIXUP: APIResutl can handle missing response bodies
2024-12-12 22:34:51 +00:00

33 lines
714 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",
# "display",
# "from",
#] }
#serde = { version = "1.0", features = ["derive"] }
"from",
] }
# kxio = {path = "../kxio/"}
kxio = "3.2"
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"
mutants = "0.0"
#pretty_assertions = "1.4"
test-log = { version = "0.2", features = ["trace"] }