[package] name = "cquill-migrate" version = "0.0.1" edition = "2021" license = "MIT" description = "Versioned CQL migrations for Cassandra and ScyllaDB" keywords = ["cicd", "cql", "migration", "Cassandra", "ScyllaDB"] authors = ["Adam McKee Bennett "] homepage = "https://github.com/eighty4/cquill" repository = "https://github.com/eighty4/cquill" exclude = [".*", "Dockerfile", "docker-compose.yml"] build = false [profile.release] lto = "fat" opt-level = 3 strip = "symbols" [lib] name = "cquill" [[bin]] name = "cquill" path = "src/main.rs" [dependencies] anyhow = "1.0.70" clap = { version = "4.1.13", features = ["derive"] } lazy_static = "1.4.0" md5 = "0.7.0" regex = "1.7.3" scylla = "0.8.0" tokio = { version = "1.27.0", features = ["full"] } uuid = "1.3.0" [dev-dependencies] rand = "0.8.5" temp-dir = "0.1.11"