# 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 = "butane" version = "0.7.0" authors = ["James Oakley "] build = "build.rs" description = "An ORM with a focus on simplicity and on writing Rust, not SQL." documentation = "https://docs.rs/butane/" readme = "README.md" keywords = [ "database", "orm", "sql", ] categories = ["database"] license = "MIT OR Apache-2.0" repository = "https://github.com/Electron100/butane" [package.metadata.docs.rs] all-features = true [[test]] name = "custom_pg" required-features = ["pg"] [[test]] name = "fake" required-features = ["fake"] [[test]] name = "json" required-features = ["json"] [[test]] name = "r2d2" required-features = ["r2d2"] [[test]] name = "uuid" required-features = ["uuid"] [dependencies.butane_codegen] version = "0.7" [dependencies.butane_core] version = "0.7" [dev-dependencies.cfg-if] version = "^1.0" [dev-dependencies.chrono] version = "0.4.25" features = [ "serde", "std", ] default-features = false [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.exec_time] version = "0.1.4" [dev-dependencies.fake] version = "2.6" features = [ "chrono", "derive", "uuid", ] [dev-dependencies.geo-types] version = "0.7" [dev-dependencies.log] version = "0.4" [dev-dependencies.nonempty] version = "0.10" [dev-dependencies.once_cell] version = "1.5.2" [dev-dependencies.paste] version = "1.0.11" [dev-dependencies.postgres] version = "0.19" features = ["with-geo-types-0_7"] [dev-dependencies.proc-macro2] version = "1.0" default-features = false [dev-dependencies.quote] version = "1.0" default-features = false [dev-dependencies.r2d2_for_test] version = "0.8" package = "r2d2" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rusqlite] version = "0.31" default-features = false [dev-dependencies.serde] version = "1.0" default-features = false [dev-dependencies.serde_json] version = "1.0" [dev-dependencies.sqlparser] version = "0.44" [dev-dependencies.uuid_for_test] version = "1.2" features = ["v4"] package = "uuid" [features] datetime = [ "butane_codegen/datetime", "butane_core/datetime", ] debug = ["butane_core/debug"] default = [ "datetime", "json", "uuid", ] fake = ["butane_core/fake"] json = [ "butane_codegen/json", "butane_core/json", ] log = ["butane_core/log"] pg = ["butane_core/pg"] r2d2 = ["butane_core/r2d2"] sqlite = ["butane_core/sqlite"] sqlite-bundled = ["butane_core/sqlite-bundled"] tls = ["butane_core/tls"] uuid = [ "butane_codegen/uuid", "butane_core/uuid", ]