loro/crates/loro-core/Cargo.toml

29 lines
610 B
TOML
Raw Normal View History

2022-07-12 16:47:41 +00:00
[package]
name = "loro-core"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
string_cache = "0.8.3"
2022-07-13 06:39:22 +00:00
rle = {path = "../rle"}
2022-07-15 10:24:15 +00:00
smallvec = "1.8.0"
smartstring = "1.0.1"
2022-07-15 13:51:19 +00:00
fxhash = "0.2.1"
2022-07-18 05:53:16 +00:00
ring = "0.16.20"
2022-07-18 06:58:33 +00:00
moveit = "0.5.0"
2022-07-19 03:54:14 +00:00
pin-project = "1.0.10"
2022-07-25 05:00:22 +00:00
serde = {version = "1.0.140", features = ["derive"]}
thiserror = "1.0.31"
2022-08-03 18:42:00 +00:00
im = "15.1.0"
2022-07-20 08:29:36 +00:00
[dev-dependencies]
proptest = "1.0.0"
proptest-derive = "0.3.0"
2022-08-04 04:51:28 +00:00
rand = "0.8.5"
2022-07-31 07:56:15 +00:00
# See https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html
[lib]
doctest = false