# 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 = "ormlite" version = "0.22.2" authors = ["Kurt Wolf "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An ORM for people who love SQL" homepage = "https://github.com/kurtbuilds/ormlite" documentation = "https://docs.rs/ormlite" readme = "README.md" keywords = [ "sqlite", "postgres", "orm", "async", "mysql", ] categories = ["database"] license = "MIT" repository = "https://github.com/kurtbuilds/ormlite" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "ormlite" path = "src/lib.rs" [[test]] name = "sqlite" path = "tests/sqlite.rs" required-features = ["sqlite"] [[test]] name = "simple" path = "tests/simple.rs" required-features = ["sqlite"] [[test]] name = "postgres" path = "tests/postgres.rs" required-features = ["postgres"] [dependencies.ormlite-core] version = "0.22.2" [dependencies.ormlite-macro] version = "0.22.2" [dependencies.sqlmo] version = "0.22" [dependencies.sqlx] version = "0.8.2" [dependencies.sqlx-core] version = "0.8.2" [dependencies.tokio] version = "1.40.0" features = ["full"] [dependencies.tokio-stream] version = "0.1.16" [dev-dependencies.chrono] version = "0.4.38" features = ["serde"] [dev-dependencies.env_logger] version = "0.11.5" [dev-dependencies.serde] version = "1.0.210" features = ["derive"] [dev-dependencies.trybuild] version = "1.0.99" features = ["diff"] [dev-dependencies.uuid] version = "1.10.0" features = [ "serde", "v4", ] [features] chrono = ["sqlx/chrono"] decimal = ["sqlx/rust_decimal"] default = ["runtime-tokio-rustls"] default-mysql = [ "mysql", "ormlite-macro/default-mysql", ] default-postgres = [ "postgres", "ormlite-macro/default-postgres", ] default-sqlite = [ "sqlite", "ormlite-macro/default-sqlite", ] json = ["sqlx/json"] mysql = [ "sqlx/mysql", "ormlite-macro/mysql", ] postgres = [ "sqlx/postgres", "ormlite-macro/postgres", "ormlite-core/postgres", ] runtime-tokio-rustls = [ "ormlite-macro/runtime-tokio-rustls", "sqlx/runtime-tokio-rustls", "ormlite-core/runtime-tokio-rustls", ] sqlite = [ "sqlx/sqlite", "ormlite-macro/sqlite", "ormlite-core/sqlite", ] time = ["sqlx/time"] uuid = ["sqlx/uuid"]