fc1b8f87fb
Most of the strings are small and so fit nicely in a SmolStr. When they don't it just reverts to using a normal String.
27 lines
746 B
TOML
27 lines
746 B
TOML
[package]
|
|
name = "automerge-protocol"
|
|
version = "0.1.0"
|
|
authors = ["Alex Good <alex@memoryandthought.me>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
hex = "^0.4.2"
|
|
uuid = { version = "^0.8.2", features=["v4"] }
|
|
thiserror = "1.0.16"
|
|
serde = { version = "^1.0", features=["derive"] }
|
|
arbitrary = { version = "1", features = ["derive"], optional = true }
|
|
smol_str = { version = "0.1.17", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
maplit = "^1.0.2"
|
|
serde_json = { version = "^1.0.61", features=["float_roundtrip"], default-features=true }
|
|
proptest = "0.10.1"
|
|
rmp = "0.8.10"
|
|
rmp-serde = "0.15.4"
|
|
|
|
[features]
|
|
derive-arbitrary = ["arbitrary"]
|