# 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 = "sqlx-etorreborre" version = "0.7.9" authors = [ "Ryan Leckey ", "Austin Bonander ", "Chloe Ross ", "Daniel Akhterov ", ] description = "🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite." documentation = "https://docs.rs/sqlx" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/launchbadge/sqlx" [package.metadata.docs.rs] features = [ "all-databases", "_unstable-all-types", ] rustdoc-args = [ "--cfg", "docsrs", ] [[test]] name = "any" path = "tests/any/any.rs" required-features = ["any"] [[test]] name = "any-pool" path = "tests/any/pool.rs" required-features = ["any"] [[test]] name = "migrate-macro" path = "tests/migrate/macro.rs" required-features = [ "macros", "migrate", ] [[test]] name = "sqlite" path = "tests/sqlite/sqlite.rs" required-features = ["sqlite"] [[test]] name = "sqlite-any" path = "tests/sqlite/any.rs" required-features = ["sqlite"] [[test]] name = "sqlite-types" path = "tests/sqlite/types.rs" required-features = ["sqlite"] [[test]] name = "sqlite-describe" path = "tests/sqlite/describe.rs" required-features = ["sqlite"] [[test]] name = "sqlite-macros" path = "tests/sqlite/macros.rs" required-features = [ "sqlite", "macros", ] [[test]] name = "sqlite-derives" path = "tests/sqlite/derives.rs" required-features = [ "sqlite", "macros", ] [[test]] name = "sqlite-error" path = "tests/sqlite/error.rs" required-features = ["sqlite"] [[test]] name = "sqlite-sqlcipher" path = "tests/sqlite/sqlcipher.rs" required-features = ["sqlite"] [[test]] name = "sqlite-test-attr" path = "tests/sqlite/test-attr.rs" required-features = [ "sqlite", "macros", "migrate", ] [[test]] name = "sqlite-migrate" path = "tests/sqlite/migrate.rs" required-features = [ "sqlite", "macros", "migrate", ] [[test]] name = "mysql" path = "tests/mysql/mysql.rs" required-features = ["mysql"] [[test]] name = "mysql-types" path = "tests/mysql/types.rs" required-features = ["mysql"] [[test]] name = "mysql-describe" path = "tests/mysql/describe.rs" required-features = ["mysql"] [[test]] name = "mysql-macros" path = "tests/mysql/macros.rs" required-features = [ "mysql", "macros", ] [[test]] name = "mysql-error" path = "tests/mysql/error.rs" required-features = ["mysql"] [[test]] name = "mysql-test-attr" path = "tests/mysql/test-attr.rs" required-features = [ "mysql", "macros", "migrate", ] [[test]] name = "mysql-migrate" path = "tests/mysql/migrate.rs" required-features = [ "mysql", "macros", "migrate", ] [[test]] name = "postgres" path = "tests/postgres/postgres.rs" required-features = ["postgres"] [[test]] name = "postgres-types" path = "tests/postgres/types.rs" required-features = ["postgres"] [[test]] name = "postgres-describe" path = "tests/postgres/describe.rs" required-features = ["postgres"] [[test]] name = "postgres-macros" path = "tests/postgres/macros.rs" required-features = [ "postgres", "macros", ] [[test]] name = "postgres-derives" path = "tests/postgres/derives.rs" required-features = [ "postgres", "macros", ] [[test]] name = "postgres-error" path = "tests/postgres/error.rs" required-features = ["postgres"] [[test]] name = "postgres-test-attr" path = "tests/postgres/test-attr.rs" required-features = [ "postgres", "macros", "migrate", ] [[test]] name = "postgres-migrate" path = "tests/postgres/migrate.rs" required-features = [ "postgres", "macros", "migrate", ] [[bench]] name = "sqlite-describe" path = "benches/sqlite/describe.rs" harness = false required-features = ["sqlite"] [dependencies.sqlx-etorreborre-core] version = ">=0.7.7" features = [ "offline", "migrate", ] [dependencies.sqlx-etorreborre-postgres] version = ">=0.7.7" optional = true [dependencies.sqlx-etorreborre-sqlite] version = ">=0.7.7" optional = true [dependencies.sqlx-macros] version = ">=0.7.4" optional = true [dependencies.sqlx-mysql] version = ">=0.7.4" optional = true [dev-dependencies.anyhow] version = "1.0.52" [dev-dependencies.async-std] version = "1.12.0" features = ["attributes"] [dev-dependencies.criterion] version = "0.5.1" features = ["async_tokio"] [dev-dependencies.dotenvy] version = "0.15.0" [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.futures] version = "0.3.19" [dev-dependencies.hex] version = "0.4.3" [dev-dependencies.paste] version = "1.0.6" [dev-dependencies.rand] version = "0.8.4" [dev-dependencies.rand_xoshiro] version = "0.6.0" [dev-dependencies.serde] version = "1.0.132" features = ["derive"] [dev-dependencies.serde_json] version = "1.0.73" [dev-dependencies.tempfile] version = "3.9.0" [dev-dependencies.time_] version = "0.3.2" package = "time" [dev-dependencies.tokio] version = "1.15.0" features = ["full"] [dev-dependencies.trybuild] version = "1.0.53" [dev-dependencies.url] version = "2.2.2" [features] _rt-async-std = [] _rt-tokio = [] _unstable-all-types = [ "bigdecimal", "rust_decimal", "json", "time", "chrono", "ipnetwork", "mac_address", "uuid", "bit-vec", ] all-databases = [ "mysql", "sqlite", "postgres", "any", ] any = [ "sqlx-etorreborre-core/any", "sqlx-mysql?/any", "sqlx-etorreborre-postgres?/any", "sqlx-etorreborre-sqlite?/any", ] bigdecimal = [ "sqlx-etorreborre-core/bigdecimal", "sqlx-macros?/bigdecimal", "sqlx-mysql?/bigdecimal", "sqlx-etorreborre-postgres?/bigdecimal", ] bit-vec = [ "sqlx-etorreborre-core/bit-vec", "sqlx-macros?/bit-vec", "sqlx-etorreborre-postgres?/bit-vec", ] chrono = [ "sqlx-etorreborre-core/chrono", "sqlx-macros?/chrono", "sqlx-mysql?/chrono", "sqlx-etorreborre-postgres?/chrono", "sqlx-etorreborre-sqlite?/chrono", ] default = [ "any", "macros", "migrate", "json", ] ipnetwork = [ "sqlx-etorreborre-core/ipnetwork", "sqlx-macros?/ipnetwork", "sqlx-etorreborre-postgres?/ipnetwork", ] json = [ "sqlx-macros?/json", "sqlx-mysql?/json", "sqlx-etorreborre-postgres?/json", "sqlx-etorreborre-sqlite?/json", ] mac_address = [ "sqlx-etorreborre-core/mac_address", "sqlx-macros?/mac_address", "sqlx-etorreborre-postgres?/mac_address", ] macros = ["sqlx-macros"] migrate = [ "sqlx-etorreborre-core/migrate", "sqlx-macros?/migrate", "sqlx-mysql?/migrate", "sqlx-etorreborre-postgres?/migrate", "sqlx-etorreborre-sqlite?/migrate", ] mysql = [ "sqlx-mysql", "sqlx-macros?/mysql", ] postgres = [ "sqlx-etorreborre-postgres", "sqlx-macros?/postgres", ] regexp = ["sqlx-etorreborre-sqlite?/regexp"] runtime-async-std = [ "_rt-async-std", "sqlx-etorreborre-core/_rt-async-std", "sqlx-macros?/_rt-async-std", ] runtime-async-std-native-tls = [ "runtime-async-std", "tls-native-tls", ] runtime-async-std-rustls = [ "runtime-async-std", "tls-rustls", ] runtime-tokio = [ "_rt-tokio", "sqlx-etorreborre-core/_rt-tokio", "sqlx-macros?/_rt-tokio", ] runtime-tokio-native-tls = [ "runtime-tokio", "tls-native-tls", ] runtime-tokio-rustls = [ "runtime-tokio", "tls-rustls", ] rust_decimal = [ "sqlx-etorreborre-core/rust_decimal", "sqlx-macros?/rust_decimal", "sqlx-mysql?/rust_decimal", "sqlx-etorreborre-postgres?/rust_decimal", ] sqlite = [ "sqlx-etorreborre-sqlite", "sqlx-macros?/sqlite", ] time = [ "sqlx-etorreborre-core/time", "sqlx-macros?/time", "sqlx-mysql?/time", "sqlx-etorreborre-postgres?/time", "sqlx-etorreborre-sqlite?/time", ] tls-native-tls = [ "sqlx-etorreborre-core/_tls-native-tls", "sqlx-macros?/_tls-native-tls", ] tls-none = [] tls-rustls = [ "sqlx-etorreborre-core/_tls-rustls", "sqlx-macros?/_tls-rustls", ] uuid = [ "sqlx-etorreborre-core/uuid", "sqlx-macros?/uuid", "sqlx-mysql?/uuid", "sqlx-etorreborre-postgres?/uuid", "sqlx-etorreborre-sqlite?/uuid", ] [target."cfg(sqlite_test_sqlcipher)".dev-dependencies.libsqlite3-sys] version = "0.27" features = ["bundled-sqlcipher"]