# 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 = "sqlite-collections" version = "0.1.0" description = "Rust collection types backed by sqlite database files." readme = "README.md" license = "MPL-2.0" repository = "https://codeberg.org/Taywee/sqlite-collections" [dependencies.ciborium] version = "0.2.1" optional = true [dependencies.postcard] version = "1.0.8" features = ["use-std"] optional = true default-features = false [dependencies.rmp-serde] version = "1.1.2" optional = true [dependencies.rusqlite] version = "0.30.0" features = ["functions"] [dependencies.serde] version = "1.0.193" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.108" optional = true [dependencies.smallvec] version = "1.11.2" features = ["write"] [features] cbor = [ "dep:ciborium", "serde", ] default = [] json = [ "dep:serde_json", "serde", ] msgpack = [ "dep:rmp-serde", "serde", ] postcard = [ "dep:postcard", "serde", ] serde = ["dep:serde"]