# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "dbspec" version = "0.2.0" description = "Database introspection and model generation" readme = "README.md" license = "MIT" [lib] name = "dbspec" path = "src/lib.rs" [[bin]] name = "dbspec" path = "src/main.rs" [dependencies.anyhow] version = "1.0.82" [dependencies.chrono] version = "0.4.38" features = ["serde"] [dependencies.clap] version = "4.5.4" features = ["derive"] [dependencies.fakeit] version = "1.2.0" optional = true default-features = false [dependencies.rand] version = "0.8.5" [dependencies.rayon] version = "1.10.0" [dependencies.sqlx] version = "0.7.4" features = ["runtime-tokio-rustls"] default-features = false [dependencies.tokio] version = "1.37.0" features = ["full"] [dev-dependencies.sqlx] version = "0.7.4" features = [ "mysql", "postgres", "macros", ] [features] default = [ "mysql", "postgres", ] fake = ["fakeit"] mysql = ["sqlx/mysql"] postgres = ["sqlx/postgres"] test-utils = []