# 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 = "ormlitex" version = "0.17.1" authors = [ "Kurt Wolf ", "holmofy ", ] autoexamples = false autotests = false description = "An ORM for people who love SQL" homepage = "https://github.com/holmofy/ormlitex" documentation = "https://docs.rs/ormlitex" readme = "README.md" license = "MIT" repository = "https://github.com/holmofy/ormlitex" resolver = "1" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [[test]] name = "sqlite" path = "tests/sqlite.rs" required-features = ["sqlite"] [[test]] name = "postgres" path = "tests/postgres.rs" required-features = ["postgres"] [dependencies.ormlitex-core] version = "0.17.1" [dependencies.ormlitex-macro] version = "0.17.1" [dependencies.sqlmo] version = "0.16" [dependencies.sqlx] version = "0.7" [dependencies.sqlx-core] version = "0.7" [dependencies.tokio] version = "1.24.1" features = ["full"] [dependencies.tokio-stream] version = "0.1.14" [dev-dependencies.chrono] version = "0.4.23" features = ["serde"] [dev-dependencies.env_logger] version = "0.10.0" [dev-dependencies.serde] version = "1.0.130" features = ["derive"] [dev-dependencies.trybuild] version = "1.0.49" features = ["diff"] [dev-dependencies.uuid] version = "1.1.2" features = [ "serde", "v4", ] [features] chrono = ["sqlx/chrono"] decimal = ["sqlx/rust_decimal"] default = ["runtime-tokio-rustls"] default-mysql = [ "mysql", "ormlitex-macro/default-mysql", ] default-postgres = [ "postgres", "ormlitex-macro/default-postgres", ] default-sqlite = [ "sqlite", "ormlitex-macro/default-sqlite", ] json = ["sqlx/json"] mysql = [ "sqlx/mysql", "ormlitex-macro/mysql", ] postgres = [ "sqlx/postgres", "ormlitex-macro/postgres", "ormlitex-core/postgres", ] runtime-tokio-rustls = [ "ormlitex-macro/runtime-tokio-rustls", "sqlx/runtime-tokio-rustls", "ormlitex-core/runtime-tokio-rustls", ] sqlite = [ "sqlx/sqlite", "ormlitex-macro/sqlite", "ormlitex-core/sqlite", ] time = ["sqlx/time"] uuid = ["sqlx/uuid"]