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

21 lines
640 B
TOML
Raw Normal View History

2023-07-13 05:25:54 -04: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-09 01:28:07 -04:00
dialoguer = "0.10.4"
2023-09-07 12:16:37 -04:00
futures = "0.3.28"
2023-09-09 04:39:06 -04:00
indicatif = { version = "0.17.6", features = ["tokio", "futures"] }
2023-07-13 05:25:54 -04:00
scylla = "0.8.2"
2023-09-06 23:16:00 -04:00
sea-orm = { version = "0.12.2", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
2023-07-13 05:25:54 -04: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-16 22:05:47 -04:00
urlencoding = "2.1.3"