[package] name = "sql-audit-cli" version = "0.1.0" authors = ["Dylan Anthony "] edition = "2018" description = "Run one command to start tracking all changes in your Postgres database!" categories = ["command-line-utilities", "database", "web-programming", "asynchronous"] keywords = ["SQL", "Postgres", "audit", "track", "change"] readme = "../README.md" repository = "https://github.com/triaxtec/sql-audit" license = "MIT" [[bin]] name = "sql-audit" path = "src/main.rs" [dependencies] async-std = { version = "1.8.0", features = ["attributes"] } color-eyre = "0.5.10" serde = "1.0.118" toml = "0.5.7" sql-audit = { path = "../sql-audit", version = "0.1.0" } sqlx = { version = "0.4.1", features = ["postgres", "runtime-async-std-rustls", "macros", "json", "chrono"] }