hippofish/packages/backend/native-utils/scylla-migration/Cargo.toml

19 lines
551 B
TOML
Raw Normal View History

2023-07-13 11:25:54 +02:00
[package]
name = "scylla-migration"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.26"
clap = { version = "4.3.11", features = ["derive"] }
2023-09-07 18:16:37 +02:00
futures = "0.3.28"
2023-07-13 11:25:54 +02:00
scylla = "0.8.2"
2023-09-07 05:16:00 +02:00
sea-orm = { version = "0.12.2", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
2023-07-13 11:25:54 +02:00
serde = { version = "1.0.171", features = ["derive"] }
serde_yaml = "0.9.22"
thiserror = "1.0.43"
tokio = { version = "1.29.1", features = ["full"] }
2023-08-17 04:05:47 +02:00
urlencoding = "2.1.3"