AppFlowy/shared-lib/backend-service/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

[package]
2021-11-20 00:35:04 +00:00
name = "backend-service"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-19 13:29:33 +00:00
flowy-core-data-model = { path = "../flowy-core-data-model" }
flowy-user-data-model = { path = "../flowy-user-data-model" }
2021-12-13 05:55:44 +00:00
flowy-collaboration = { path = "../flowy-collaboration" }
2021-11-20 00:35:04 +00:00
log = "0.4.14"
lazy_static = "1.4.0"
tokio = { version = "1", features = ["rt"] }
anyhow = "1.0"
thiserror = "1.0.24"
bytes = { version = "1.0", features = ["serde"]}
reqwest = "0.11"
2021-08-21 09:17:54 +00:00
hyper = "0.14"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
2021-11-20 00:35:04 +00:00
uuid = { version = "0.8", features = ["v4"] }
protobuf = {version = "2.18.0"}
derive_more = {version = "0.99", features = ["display"]}
2021-11-03 07:37:38 +00:00
tracing = { version = "0.1", features = ["log"] }
actix-web = {version = "4.0.0-beta.8", optional = true}
2021-12-05 08:39:41 +00:00
config = { version = "0.10.1", default-features = false, features = ["yaml"] }
serde-aux = "1.0.1"
[features]
2021-11-20 00:35:04 +00:00
http_server = ["actix-web"]