# 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 = "welds-connections" version = "0.4.8" authors = ["Lex Childs "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An async ORM for (postgres, mssql, mysql, sqlite)" readme = "README.md" keywords = [ "orm", "postgres", "mssql", "mysql", "sqlite", ] categories = ["database"] license = "BSD-3-Clause" repository = "https://github.com/weldsorm/welds" resolver = "1" [package.metadata.docs.rs] all-features = true [lib] name = "welds_connections" path = "src/lib.rs" [[example]] name = "crud_raw_connection" path = "examples/crud_raw_connection.rs" [dependencies.async-trait] version = "0.1" [dependencies.bb8] version = "0.8" optional = true [dependencies.bb8-tiberius] version = "0.15" optional = true [dependencies.futures] version = "0.3" optional = true [dependencies.futures-util] version = "0.3" optional = true [dependencies.log] version = "0.4" [dependencies.sqlx] version = "0.8" features = [] optional = true [dependencies.thiserror] version = "1.0.57" [dependencies.tiberius] version = "0.12" features = ["tokio"] optional = true [dependencies.tokio] version = "1" features = [] optional = true [dependencies.tokio-util] version = "0.7" features = ["full"] optional = true [dev-dependencies.pretty_env_logger] version = "0.5" [dev-dependencies.sqlx] version = "0.8" features = ["runtime-tokio"] [dev-dependencies.tokio] version = "1" features = ["full"] [features] default = [] full = [ "postgres", "mysql", "sqlite", "mssql", "noop", ] mssql = [ "tokio", "tokio-util", "futures-util", "tiberius", "bb8-tiberius", "bb8", "futures", ] mssql-bigdecimal = ["tiberius/bigdecimal"] mssql-chrono = ["tiberius/chrono"] mssql-rust_decimal = ["tiberius/rust_decimal"] mssql-time = ["tiberius/time"] mysql = ["sqlx/mysql"] noop = [] postgres = ["sqlx/postgres"] sqlite = ["sqlx/sqlite"]