2021-06-29 08:52:29 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-user"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
derive_more = {version = "0.99", features = ["display"]}
|
2021-06-30 07:33:49 +00:00
|
|
|
flowy-sys = { path = "../flowy-sys", features = ["use_serde"] }
|
2021-06-29 15:21:25 +00:00
|
|
|
flowy-log = { path = "../flowy-log" }
|
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|
|
bytes = "0.5"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
validator = "0.12.0"
|
|
|
|
rand = { version = "0.8", features=["std_rng"] }
|
|
|
|
unicode-segmentation = "1.7.1"
|
2021-06-30 15:11:27 +00:00
|
|
|
log = "0.4.14"
|
2021-06-29 15:21:25 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = "0.9.2"
|
|
|
|
quickcheck_macros = "0.9.1"
|
|
|
|
fake = "~2.3.0"
|
|
|
|
claim = "0.4.0"
|