crdtosphere 0.1.0

Universal embedded CRDTs for distributed coordination across automotive, robotics, IoT, and industrial applications
Documentation
[badges.maintenance]
status = "actively-developed"

[[bench]]
harness = false
name = "crdt_benchmarks"
path = "benches/crdt_benchmarks.rs"

[[bench]]
harness = false
name = "memory_benchmarks"
path = "benches/memory_benchmarks.rs"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.proptest-derive]
version = "0.4"

[dev-dependencies.quickcheck]
version = "1.0"

[dev-dependencies.quickcheck_macros]
version = "1.0"

[[example]]
name = "atomic_counter"
path = "examples/atomic_counter.rs"
required-features = ["hardware-atomic"]

[[example]]
name = "atomic_gset"
path = "examples/atomic_gset.rs"
required-features = ["hardware-atomic"]

[[example]]
name = "atomic_lww_map"
path = "examples/atomic_lww_map.rs"
required-features = ["hardware-atomic"]

[[example]]
name = "atomic_lww_register"
path = "examples/atomic_lww_register.rs"
required-features = ["hardware-atomic"]

[[example]]
name = "atomic_mv_register"
path = "examples/atomic_mv_register.rs"
required-features = ["hardware-atomic"]

[[example]]
name = "atomic_orset"
path = "examples/atomic_orset.rs"
required-features = ["hardware-atomic"]

[[example]]
name = "atomic_pncounter"
path = "examples/atomic_pncounter.rs"
required-features = ["hardware-atomic"]

[features]
all = ["automotive", "robotics", "iot", "industrial", "hardware", "serde"]
aurix = []
automotive = []
cortex-m = []
hardware = ["hardware-atomic"]
hardware-atomic = []
industrial = []
iot = []
riscv = []
robotics = []
serde = ["dep:serde"]
stm32 = []

[lib]
name = "crdtosphere"
path = "src/lib.rs"

[package]
authors = ["Theo M. Bulut"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["embedded", "data-structures", "no-std"]
description = "Universal embedded CRDTs for distributed coordination across automotive, robotics, IoT, and industrial applications"
documentation = "https://docs.rs/crdtosphere"
edition = "2024"
exclude = ["/art", "/proptest-regressions", "/tests", "/target", "Makefile", ".*", "*.log", "*.bak", "*.orig"]
homepage = "https://github.com/vertexclique/crdtosphere"
keywords = ["crdt", "embedded", "no-std", "distributed", "iot"]
license = "MIT OR Apache-2.0"
name = "crdtosphere"
readme = "README.md"
repository = "https://github.com/vertexclique/crdtosphere"
rust-version = "1.85"
version = "0.1.0"

[package.metadata."docs.rs"]
features = ["automotive", "robotics", "iot", "industrial", "hardware-atomic", "serde"]
rustdoc-args = ["--cfg", "docsrs", "--default-theme", "ayu", "--generate-link-to-definition"]
targets = ["x86_64-unknown-linux-gnu", "thumbv7em-none-eabihf", "riscv32imac-unknown-none-elf"]