# 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 = "db-schema" version = "0.2.1" description = """ A simple library to retrieve schema information from database. """ homepage = "https://github.com/tyrchen/db-schema" documentation = "https://docs.rs/db-schema" readme = "README.md" keywords = [ "sqlx", "postgres", "database", "schema", ] categories = ["development-tools"] license = "MIT" repository = "https://github.com/tyrchen/db-schema" [dependencies.paste] version = "1.0.12" optional = true [dependencies.sqlx] version = "0.6.3" features = ["runtime-tokio-rustls"] optional = true [dev-dependencies.anyhow] version = "1.0.70" [dev-dependencies.sqlx] version = "0.6.3" features = [ "postgres", "runtime-tokio-rustls", ] [dev-dependencies.sqlx-db-tester] version = "0.3.6" [dev-dependencies.tokio] version = "1.27.0" features = [ "rt", "rt-multi-thread", "macros", ] [features] db-all = [ "db-postgres", "db-mysql", "db-sqlite", ] db-mysql = [ "sqlx/mysql", "paste", ] db-postgres = [ "sqlx/postgres", "paste", ] db-sqlite = [ "sqlx/sqlite", "paste", ] default = ["db-postgres"]