caretta-sync/lazy-supplements/Cargo.toml

36 lines
1,008 B
TOML
Raw Normal View History

2025-05-23 08:50:31 +09:00
[package]
name = "lazy-supplements"
edition.workspace = true
version.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
2025-05-27 17:49:52 +09:00
[features]
default = []
test = ["dep:tempfile"]
2025-05-23 08:50:31 +09:00
[dependencies]
2025-05-24 06:11:00 +09:00
base64 = "0.22.1"
2025-05-25 17:19:37 +09:00
chrono = "0.4.41"
chrono-tz = "0.10.3"
2025-05-24 06:11:00 +09:00
clap = { version = "4.5.38", features = ["derive"] }
2025-05-30 09:26:47 +09:00
dirs = "6.0.0"
futures = "0.3.31"
2025-05-24 06:11:00 +09:00
libp2p.workspace = true
2025-06-06 06:50:28 +09:00
rustyline = "16.0.0"
2025-05-25 17:19:37 +09:00
sea-orm = { version = "1.1.11", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros", "with-chrono", "with-uuid"] }
2025-05-28 12:55:09 +09:00
sea-orm-migration.workspace = true
2025-05-24 06:11:00 +09:00
serde = { version = "1.0.219", features = ["derive"] }
2025-06-06 06:50:28 +09:00
shell-words = "1.1.0"
2025-05-27 17:49:52 +09:00
tempfile = { version = "3.20.0", optional = true }
2025-05-24 06:11:00 +09:00
thiserror = "2.0.12"
2025-06-10 07:47:37 +09:00
tokio = { version = "1.45.0", features = ["macros", "rt", "rt-multi-thread"] }
2025-05-24 06:11:00 +09:00
toml = "0.8.22"
2025-06-07 09:21:07 +09:00
tracing = "0.1.41"
2025-05-30 09:26:47 +09:00
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
2025-05-25 17:19:37 +09:00
uuid = { version = "1.17.0", features = ["v4"] }
[dev-dependencies]
2025-05-30 09:26:47 +09:00
tempfile = "3.20.0"