AppFlowy/shared-lib/user-model/Cargo.toml

28 lines
584 B
TOML
Raw Normal View History

2023-01-30 03:11:19 +00:00
[package]
name = "user-model"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0" }
validator = "0.16.0"
2023-03-03 12:38:31 +00:00
unicode-segmentation = "1.10"
2023-01-30 03:11:19 +00:00
fancy-regex = "0.11.0"
lazy_static = "1.4.0"
tracing = { version = "0.1", features = ["log"] }
thiserror = "1.0"
serde_repr = "0.1"
[dev-dependencies]
nanoid = "0.4.0"
quickcheck = "1.0.3"
quickcheck_macros = "0.9.1"
2023-03-03 12:38:31 +00:00
fake = "2.5.0"
#claim = "0.5.0"
futures = "0.3.26"
2023-01-30 03:11:19 +00:00
serial_test = "0.5.1"
2023-03-03 12:38:31 +00:00
rand_core = "0.6.4"
rand = "0.8.5"