trello-to-deck/Cargo.toml

42 lines
1,023 B
TOML
Raw Normal View History

2024-11-29 13:50:34 +00:00
[package]
name = "trello-to-deck"
2024-12-31 16:01:05 +00:00
version = "1.0.0"
2024-11-29 13:50:34 +00:00
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"
2024-11-29 13:50:34 +00:00
[dependencies]
2024-12-19 09:04:23 +00:00
all-colors = "0.0"
bytes = "1.9"
clap = { version = "4.5", features = ["cargo", "derive"] }
2024-11-29 14:31:40 +00:00
color-eyre = "0.6"
2024-11-29 19:19:36 +00:00
derive_more = { version = "1.0", features = [
"as_ref",
"constructor",
"deref",
"from",
2024-11-29 19:19:36 +00:00
] }
2024-12-19 09:04:23 +00:00
inquire = "0.7"
2024-12-20 21:01:33 +00:00
kameo = "0.13"
# kxio = { path = "../kxio/" }
kxio = "5.0"
rand = "0.8"
reqwest = { version = "0.12", features = ["multipart", "stream"] }
2024-11-29 19:19:36 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-12-22 15:58:04 +00:00
tokio = { version = "1.41", features = ["full", "tracing"] }
2024-11-29 19:19:36 +00:00
toml = "0.8"
tracing = "0.1"
2024-12-08 10:51:19 +00:00
tracing-subscriber = "0.3"
2024-12-22 15:58:04 +00:00
console-subscriber = "0.4"
2024-11-29 14:15:32 +00:00
[dev-dependencies]
assert2 = "0.3"
2024-12-14 19:51:55 +00:00
http = "1.2"
2024-11-29 14:15:32 +00:00
mutants = "0.0"
pretty_assertions = "1.4"
rstest = "0.23"
test-log = { version = "0.2", features = ["trace"] }