# 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 = "native_db" version = "0.8.1" authors = ["Vincent Herlemont "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "Drop-in embedded database" readme = "README.md" keywords = [ "embedded-database", "database", "multi-platform", "android", "ios", ] categories = [ "database-implementations", "concurrency", "data-structures", "caching", "algorithms", ] license = "MIT" repository = "https://github.com/vincent-herlemont/native_db" [lib] name = "native_db" path = "src/lib.rs" [[test]] name = "check_integrity" path = "tests/check_integrity.rs" [[test]] name = "compact" path = "tests/compact.rs" [[test]] name = "convert_all" path = "tests/convert_all.rs" [[test]] name = "deserialization_error" path = "tests/deserialization_error.rs" [[test]] name = "modules" path = "tests/modules.rs" [[test]] name = "native_model" path = "tests/native_model.rs" [[test]] name = "refresh" path = "tests/refresh.rs" [[test]] name = "scan" path = "tests/scan.rs" [[test]] name = "simple_multithreads" path = "tests/simple_multithreads.rs" [[test]] name = "snapshot" path = "tests/snapshot.rs" [[test]] name = "transaction" path = "tests/transaction.rs" [[test]] name = "util" path = "tests/util.rs" [[test]] name = "watch_tokio" path = "tests/watch_tokio.rs" [[bench]] name = "all" path = "benches/all.rs" harness = false [[bench]] name = "setup" path = "benches/setup.rs" [dependencies.native_db_macro] version = "0.8.1" [dependencies.native_model] version = "0.4.20" [dependencies.redb] version = "2.1.4" [dependencies.redb1] version = "=1.5.1" optional = true package = "redb" [dependencies.semver] version = "1" [dependencies.serde] version = "1.0" [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.40.0" features = ["sync"] optional = true [dev-dependencies.assert_fs] version = "1.1.2" [dev-dependencies.bincode] version = "2.0.0-rc.3" features = ["serde"] [dev-dependencies.cc] version = "1.1.30" [dev-dependencies.chrono] version = "0.4" features = ["serde"] [dev-dependencies.concat-idents] version = "1.1.5" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.dinghy-test] version = "0.7.2" [dev-dependencies.doc-comment] version = "0.3.3" [dev-dependencies.include_dir] version = "0.7" [dev-dependencies.itertools] version = "0.13" [dev-dependencies.once_cell] version = "1.20.2" [dev-dependencies.paste] version = "1.0.15" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.rusqlite] version = "0.32.1" features = ["bundled"] [dev-dependencies.serial_test] version = "3.1.1" features = ["file_locks"] [dev-dependencies.shortcut_assert_fs] version = "0.1.0" [dev-dependencies.skeptic] version = "0.13.7" [dev-dependencies.tokio] version = "1.40.0" features = [ "test-util", "macros", ] [dev-dependencies.uuid] version = "1.10.0" features = [ "serde", "v4", ] [build-dependencies.skeptic] version = "0.13.7" [features] default = [ "upgrade_0_5_x", "upgrade_0_7_x", ] upgrade_0_5_x = ["redb1"] upgrade_0_7_x = []