crdts 7.3.2

Practical, serializable, thoroughly tested CRDTs
Documentation
# 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 = "crdts"
version = "7.3.2"
authors = [
    "Tyler Neely <t@jujit.su>",
    "David Rusu <davidrusu.me@gmail.com>",
]
description = "Practical, serializable, thoroughly tested CRDTs"
homepage = "https://github.com/rust-crdt/rust-crdt"
documentation = "https://docs.rs/crdts"
readme = "README.md"
keywords = [
    "crdt",
    "data-structures",
    "distributed-systems",
    "vector-clock",
    "riak",
]
license = "Apache-2.0"
repository = "https://github.com/rust-crdt/rust-crdt"
resolver = "2"

[profile.release]
debug = 2

[[test]]
name = "test"
path = "test/test.rs"

[dependencies.num]
version = "0.4"
features = ["serde"]
optional = true

[dependencies.quickcheck]
version = "1.0"
optional = true

[dependencies.serde]
version = "~1.0.91"
features = ["derive"]

[dependencies.tiny-keccak]
version = "2.0.2"
features = ["sha3"]
optional = true

[dev-dependencies.derive_more]
version = "0.99"

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

[dev-dependencies.rand]
version = "0.8"

[features]
default = [
    "quickcheck",
    "num",
    "merkle",
]
merkle = ["dep:tiny-keccak"]
num = ["dep:num"]
quickcheck = ["dep:quickcheck"]