mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
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]
|
|
flowy-core-data-model = { path = "../flowy-core-data-model" }
|
|
flowy-user-data-model = { path = "../flowy-user-data-model" }
|
|
flowy-collaboration = { path = "../flowy-collaboration" }
|
|
|
|
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"
|
|
hyper = "0.14"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
protobuf = {version = "2.18.0"}
|
|
derive_more = {version = "0.99", features = ["display"]}
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
actix-web = {version = "4.0.0-beta.8", optional = true}
|
|
config = { version = "0.10.1", default-features = false, features = ["yaml"] }
|
|
serde-aux = "1.0.1"
|
|
|
|
[features]
|
|
http_server = ["actix-web"] |