automerge/perf/Cargo.toml
Andrew Jeffery fc1b8f87fb
Use SmolStr in place of String (#182)
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.
2021-06-19 16:28:51 +01:00

17 lines
447 B
TOML

[package]
name = "perf"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
automerge = { path = "../automerge" }
automerge-frontend = { path = "../automerge-frontend" }
automerge-protocol = { path = "../automerge-protocol" }
rand = "0.8.2"
maplit = "^1.0.2"
unicode-segmentation = "1.7.1"
serde = "1.0.126"
serde_json = "1.0.64"
smol_str = "0.1.17"