# 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 = "ormx" version = "0.11.0" authors = ["Moritz Bischof"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "lightweight procedural macros bringing orm-like features to sqlx" homepage = "https://github.com/NyxCode/ormx" readme = "README.md" license = "MIT" repository = "https://github.com/NyxCode/ormx" [package.metadata.docs.rs] features = ["_docs-rs-build"] targets = ["x86_64-unknown-linux-gnu"] [lib] name = "ormx" path = "src/lib.rs" [dependencies.futures] version = "0.3" [dependencies.ormx-macros] version = "=0.11.0" [dependencies.sqlx] version = "0.8" features = ["macros"] default-features = false [dev-dependencies.anyhow] version = "1" [dev-dependencies.tokio] version = "1.1" features = ["full"] [features] _docs-rs-build = [ "sqlx/runtime-tokio-rustls", "postgres", ] mariadb = [ "sqlx/mysql", "ormx-macros/mariadb", ] mysql = [ "sqlx/mysql", "ormx-macros/mysql", ] postgres = [ "sqlx/postgres", "ormx-macros/postgres", ] sqlite = [ "sqlx/sqlite", "ormx-macros/sqlite", ]