caretta-sync/lazy-supplements/Cargo.toml

30 lines
865 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"] }
libp2p.workspace = true
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-24 06:11:00 +09:00
serde = { version = "1.0.219", features = ["derive"] }
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"
tokio = { version = "1.45.0", features = ["macros", "rt"] }
toml = "0.8.22"
2025-05-25 17:19:37 +09:00
uuid = { version = "1.17.0", features = ["v4"] }
[dev-dependencies]
lazy-supplements-migration.workspace = true
2025-05-27 17:49:52 +09:00
sea-orm-migration.workspace = true
tempfile = "3.20.0"