# 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 = "eight" version = "1.0.0-alpha.2" authors = ["meppu "] include = [ "src/**/*", "Cargo.toml", "README.md", "LICENSE", ] description = "Modular asynchronous embedded key-value database" homepage = "https://github.com/meppu/eight/tree/main/eight" readme = "README.md" keywords = [ "key-value", "database", "db", "embedded-database", "key-value-store", ] categories = [ "database-implementations", "data-structures", "embedded", ] license = "BSD-3-Clause" repository = "https://github.com/meppu/eight" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.async-trait] version = "0.1" [dependencies.axum] version = "0.6" features = ["ws"] optional = true [dependencies.futures] version = "0.3" [dependencies.rand] version = "0.8" optional = true [dependencies.reqwest] version = "0.11" features = ["json"] optional = true [dependencies.serde] version = "1" features = ["derive"] optional = true [dependencies.serde_json] version = "1" optional = true [dependencies.thiserror] version = "1" [dependencies.tokio] version = "1" features = [ "rt", "fs", "sync", "time", ] [dependencies.tokio-tungstenite] version = "0.18" optional = true [dependencies.tracing] version = "0.1" optional = true [dependencies.tracing-subscriber] version = "0.3" optional = true [dev-dependencies.tokio] version = "1" features = [ "macros", "rt-multi-thread", ] [dev-dependencies.tokio-test] version = "0.4" [features] client = [ "serde", "dep:serde_json", "dep:reqwest", "dep:tokio-tungstenite", "dep:rand", ] default = [ "filesystem-storage", "in-memory-storage", ] expose = [ "client", "dep:axum", "dep:tracing", "dep:tracing-subscriber", ] filesystem-storage = [] full = [ "macros", "expose", "in-memory-storage", "filesystem-storage", ] in-memory-storage = [] macros = [] serde = ["dep:serde"]