[package]
edition = "2021"
rust-version = "1.90"
name = "dyniak"
version = "0.0.1"
authors = ["The Dynomite Rust Port Authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Riak-compatible protocol surface (HTTP + PBC) and storage bridge for the Dynomite Rust port"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/gburd/dynomite"
[features]
default = []
noxu = ["dep:noxu"]
wasm = [
"dep:wasmtime",
"dep:ciborium",
]
[lib]
name = "dyniak"
path = "src/lib.rs"
[[test]]
name = "aae_persist_round_trip"
path = "tests/aae_persist_round_trip.rs"
[[test]]
name = "bucket_props_routing"
path = "tests/bucket_props_routing.rs"
[[test]]
name = "datatypes_properties"
path = "tests/datatypes_properties.rs"
[[test]]
name = "datatypes_round_trip"
path = "tests/datatypes_round_trip.rs"
[[test]]
name = "dvv_properties"
path = "tests/dvv_properties.rs"
[[test]]
name = "handoff_fsm"
path = "tests/handoff_fsm.rs"
[[test]]
name = "http_round_trip"
path = "tests/http_round_trip.rs"
[[test]]
name = "mapreduce_round_trip"
path = "tests/mapreduce_round_trip.rs"
[[test]]
name = "mapreduce_wasm"
path = "tests/mapreduce_wasm.rs"
[[test]]
name = "noxu_pbc_round_trip"
path = "tests/noxu_pbc_round_trip.rs"
[[test]]
name = "pbc_round_trip"
path = "tests/pbc_round_trip.rs"
[[test]]
name = "reaper_fsm"
path = "tests/reaper_fsm.rs"
[[test]]
name = "tls_round_trip"
path = "tests/tls_round_trip.rs"
[dependencies.bytes]
version = "1.11"
[dependencies.ciborium]
version = "0.2"
optional = true
[dependencies.dyn-encoding]
version = "0.0.1"
[dependencies.dyn-hashtree]
version = "0.0.1"
[dependencies.dynomite]
version = "0.0.1"
package = "dynomite-engine"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.gen-fsm]
version = "0.0.1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1.10"
features = [
"http1",
"server",
]
[dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
[dependencies.noxu]
version = "3.0.2"
optional = true
[dependencies.parking_lot]
version = "0.12"
[dependencies.prost]
version = "0.14"
[dependencies.rustls]
version = "0.23"
features = [
"std",
"ring",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.throttle-core]
version = "0.0.1"
[dependencies.tokio]
version = "1.52"
features = ["full"]
[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.wasmtime]
version = "36.0.8"
features = [
"cranelift",
"runtime",
"wat",
]
optional = true
default-features = false
[dev-dependencies.hegeltest]
version = "0.14"
features = ["native"]
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.hyper-rustls]
version = "0.27"
features = [
"http1",
"ring",
"webpki-tokio",
"tls12",
]
default-features = false
[dev-dependencies.hyper-util]
version = "0.1"
features = [
"tokio",
"client-legacy",
"http1",
]
[dev-dependencies.rcgen]
version = "0.14"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tokio]
version = "1.52"
features = ["full"]
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]