# 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 = "esql" version = "0.1.2" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Useful and lightweight database extension library for your Rust project" readme = "README.md" keywords = [ "database", "async", "postgres", "mysql", ] categories = [ "database", "asynchronous", ] license = "MIT" [lib] name = "esql" path = "src/lib.rs" [[test]] name = "query" path = "tests/query.rs" [dependencies.futures-util] version = "0.3" default-features = false [dependencies.mysql_async] version = "0.34" features = ["minimal"] optional = true default-features = false [dependencies.mysql_common] version = "0.32" optional = true [dependencies.thiserror] version = "1.0" [dependencies.tokio-postgres] version = "0.7" optional = true default-features = false [dependencies.uuid] version = "1.10" optional = true [features] mysql-async = [ "dep:mysql_async", "dep:mysql_common", ] tokio-postgres = ["dep:tokio-postgres"] uuid = [ "dep:uuid", "tokio-postgres/with-uuid-1", ]