mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
29 lines
815 B
TOML
29 lines
815 B
TOML
[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"
|
|
hyper = "0.14"
|
|
protobuf = {version = "2.18.0"}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
pin-project = "1.0.0"
|
|
futures-core = { version = "0.3", default-features = false }
|
|
log = "0.4"
|
|
bytes = { version = "1.0", features = ["serde"]}
|
|
lazy_static = "1.4.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
actix-web = {version = "4.0.0-beta.8", optional = true}
|
|
derive_more = {version = "0.99", features = ["display"]}
|
|
flowy-derive = { path = "../flowy-derive" }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0.24"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
[features]
|
|
http = ["actix-web"] |