2021-08-20 03:52:45 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-net"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
reqwest = "0.11"
|
|
|
|
protobuf = {version = "2.18.0"}
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_repr = "0.1"
|
2021-08-20 06:38:03 +00:00
|
|
|
pin-project = "1.0.0"
|
|
|
|
futures-core = { version = "0.3", default-features = false }
|
2021-08-20 13:09:21 +00:00
|
|
|
log = "0.4"
|
|
|
|
bytes = "1.0"
|
|
|
|
lazy_static = "1.4.0"
|
2021-08-21 04:11:33 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
|
|
|
actix-web = {version = "4.0.0-beta.8", optional = true}
|
2021-08-20 03:52:45 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
http = ["actix-web"]
|