# 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 = "jankenstore" version = "0.1.5" authors = ["Martin Zheng "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Database operation helpers library" readme = "README.md" keywords = [ "rust", "sqlite", "helpers", "database", ] categories = ["database"] license = "MIT" repository = "https://github.com/pandazy/jankenstore" [lib] name = "jankenstore" path = "src/lib.rs" [[test]] name = "test_basic" path = "tests/test_basic.rs" [[test]] name = "test_create_or_update" path = "tests/test_create_or_update.rs" [[test]] name = "test_hard_delete" path = "tests/test_hard_delete.rs" [[test]] name = "test_query_input_errors" path = "tests/test_query_input_errors.rs" [dependencies.anyhow] version = "1.0" [dependencies.rusqlite] version = "0.32" [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_json] version = "1.0" [dev-dependencies.insta] version = "1.40"