2021-06-28 14:56:15 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-sdk"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-08 13:23:44 +00:00
|
|
|
flowy-dispatch = { path = "../flowy-dispatch", features = ["use_tracing"]}
|
2021-07-09 06:02:42 +00:00
|
|
|
flowy-log = { path = "../flowy-log" }
|
|
|
|
#flowy-log = { path = "../flowy-log", features = ["use_bunyan"] }
|
2021-06-30 15:11:27 +00:00
|
|
|
flowy-user = { path = "../flowy-user" }
|
2021-07-11 07:33:19 +00:00
|
|
|
flowy-infra = { path = "../flowy-infra" }
|
2021-07-03 06:14:10 +00:00
|
|
|
tracing = { version = "0.1" }
|
2021-06-30 15:11:27 +00:00
|
|
|
log = "0.4.14"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
bincode = { version = "1.3"}
|
|
|
|
protobuf = {version = "2.24.1"}
|
|
|
|
claim = "0.5.0"
|
|
|
|
tokio = { version = "1", features = ["full"]}
|
|
|
|
futures-util = "0.3.15"
|