[package] name = "sqldiff" version = "0.5.0" edition = "2021" description = "primitives to auto-generate SQL schema migrations" license = "MIT" homepage = "https://github.com/kurtbuilds/sqldiff" repository = "https://github.com/kurtbuilds/sqldiff" documentation = "https://docs.rs/sqldiff" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.66" itertools = "0.10.5" openapiv3-extended = { version = "1.0.13", optional = true } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } tokio = { version = "1.22.0", features = ["full"] } convert_case = "0.6.0" serde_yaml = { version = "0.9.14", optional = true } [features] openapi = ["openapiv3-extended", "serde_yaml"]