[package]
edition = "2021"
rust-version = "1.78"
name = "yugendb"
version = "0.1.0"
authors = ["2rkf"]
build = false
exclude = [
"tests/**",
"benches/**",
"examples/**",
"*.sqlite",
"*.zip",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "User-facing Rust facade crate for yugendb."
homepage = "https://github.com/2rkf/yugendb"
documentation = "https://docs.rs/yugendb"
readme = "README.md"
keywords = [
"database",
"key-value",
"document",
"storage",
"typed",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/2rkf/yugendb"
[features]
all-drivers = [
"memory",
"sqlite",
"mysql",
"mongodb",
"postgres",
"redis",
]
default = []
memory = ["dep:yugendb-memory"]
mongodb = ["dep:yugendb-mongodb"]
mysql = ["dep:yugendb-mysql"]
postgres = ["dep:yugendb-postgres"]
redis = ["dep:yugendb-redis"]
sqlite = ["dep:yugendb-sqlite"]
[lib]
name = "yugendb"
path = "src/lib.rs"
[dependencies.yugendb-core]
version = "0.1.0"
[dependencies.yugendb-memory]
version = "0.1.0"
optional = true
[dependencies.yugendb-mongodb]
version = "0.1.0"
optional = true
[dependencies.yugendb-mysql]
version = "0.1.0"
optional = true
[dependencies.yugendb-postgres]
version = "0.1.0"
optional = true
[dependencies.yugendb-redis]
version = "0.1.0"
optional = true
[dependencies.yugendb-sqlite]
version = "0.1.0"
optional = true
[lints.clippy]
all = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"