# 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" rust-version = "1.77" name = "rusqlite_migration" version = "1.3.1" authors = ["Clément Joly "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "Simple schema migration library for rusqlite using user_version instead of an SQL table to maintain the current schema version." homepage = "https://cj.rs/rusqlite_migration" readme = "README.md" keywords = [ "rusqlite", "sqlite", "user_version", "database", "migration", ] categories = ["database"] license = "Apache-2.0" repository = "https://github.com/cljoly/rusqlite_migration" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "rusqlite_migration" path = "src/lib.rs" [[bench]] name = "criterion" path = "benches/criterion.rs" harness = false [[bench]] name = "from_directory" path = "benches/from_directory.rs" [[bench]] name = "iai" path = "benches/iai.rs" harness = false [dependencies.include_dir] version = "0.7.4" optional = true [dependencies.log] version = "0.4" [dependencies.rusqlite] version = "0.32.1" features = [] default-features = false [dependencies.tokio] version = "1.40" features = ["macros"] optional = true [dependencies.tokio-rusqlite] version = "0.6.0" optional = true [dev-dependencies.anyhow] version = "1" [dev-dependencies.criterion] version = "0.5.0" features = [ "html_reports", "cargo_bench_support", ] [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.iai] version = "0.1" [dev-dependencies.insta] version = "1.40.0" [dev-dependencies.lazy_static] version = "1.5.0" [dev-dependencies.mktemp] version = "0.5" [dev-dependencies.mutants] version = "0.0.3" [dev-dependencies.simple-logging] version = "2.0.2" [dev-dependencies.tokio] version = "1.40" features = ["full"] [dev-dependencies.tokio-test] version = "0.4.4" [features] alpha-async-tokio-rusqlite = [ "dep:tokio-rusqlite", "dep:tokio", ] default = [] from-directory = ["dep:include_dir"] [lints.rust] missing_docs = "warn" unsafe_code = "forbid"