# 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 = "microrm" version = "0.5.0-rc.2" authors = ["Kestrel "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Lightweight ORM using sqlite as a backend." readme = "README.md" license = "BSD-4-Clause" repository = "https://git.flying-kestrel.ca/kestrel/microrm" [package.metadata.docs.rs] all-features = true features = [ "clap", "bundled_sqlite", ] [lib] name = "microrm" path = "src/lib.rs" [[test]] name = "conflicts" path = "tests/conflicts.rs" [[test]] name = "derive" path = "tests/derive.rs" [[test]] name = "fkey" path = "tests/fkey.rs" [[test]] name = "index" path = "tests/index.rs" [[test]] name = "injective" path = "tests/injective.rs" [[test]] name = "join" path = "tests/join.rs" [[test]] name = "manual_construction" path = "tests/manual_construction.rs" [[test]] name = "mutual" path = "tests/mutual.rs" [[test]] name = "nested_schemata" path = "tests/nested_schemata.rs" [[test]] name = "query_construct" path = "tests/query_construct.rs" [[test]] name = "query_equiv" path = "tests/query_equiv.rs" [[test]] name = "reserved" path = "tests/reserved.rs" [[test]] name = "value_proxy" path = "tests/value_proxy.rs" [dependencies.clap] version = "4" optional = true [dependencies.itertools] version = "0.12" [dependencies.lazy_static] version = "1.5" [dependencies.libsqlite3-sys] version = "0.28" [dependencies.log] version = "0.4.17" [dependencies.microrm-macros] version = "0.5.0-rc.2" [dependencies.serde] version = "1.0" [dependencies.serde_json] version = "1.0" [dependencies.sha2] version = "0.10" [dependencies.thread_local] version = "1.1" [dependencies.time] version = "0.3" [dev-dependencies.clap] version = "4" features = ["derive"] [dev-dependencies.serde] version = "1.0" features = ["derive"] [dev-dependencies.stdext] version = "0.3" [dev-dependencies.test-log] version = "0.2.15" [features] bundled_sqlite = ["libsqlite3-sys/bundled"] clap = ["dep:clap"]