[package]
edition = "2024"
rust-version = "1.91"
name = "openstack-keystone-distributed-storage"
version = "0.1.0"
authors = ["Artem Goncharov (gtema)"]
build = "build.rs"
exclude = [
".github",
"doc",
"tests",
"tools",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Keystone distributed storage based on the `openraft` and `fjall` database."
homepage = "https://openstack-experimental.github.io/keystone"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/openstack-experimental/keystone"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "openstack_keystone_distributed_storage"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.byteorder]
version = "1.5"
[dependencies.fjall]
version = "3.1"
[dependencies.futures]
version = "0.3"
[dependencies.openraft]
version = "0.10.0-alpha.14"
features = [
"serde",
"type-alias",
]
[dependencies.prost]
version = "0.14"
[dependencies.rand]
version = "0.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tonic]
version = "0.14"
[dependencies.tonic-prost]
version = "0.14"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.eyre]
version = "0.6"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.tracing-test]
version = "0.2"
[build-dependencies.tonic-prost-build]
version = "0.14"
[lints.clippy]
doc_paragraphs_missing_punctuation = "warn"
enum_glob_use = "deny"
expect_used = "deny"
print_stdout = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"