| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 | 
							- [package]
 
- name = "backend"
 
- version = "0.1.0"
 
- edition = "2018"
 
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
- [dependencies]
 
- actix = "0.12"
 
- #actix-web = "3"
 
- #actix-http = "2.2.1"
 
- #actix-web-actors = "3"
 
- actix-codec = "0.4"
 
- actix-web = "4.0.0-beta.11"
 
- actix-http = "3.0.0-beta.12"
 
- actix-rt = "2"
 
- actix-web-actors = { version = "4.0.0-beta.7" }
 
- actix-service = "2.0.1"
 
- actix-identity = "0.4.0-beta.3"
 
- actix-cors = "0.6.0-beta.3"
 
- futures = "0.3.15"
 
- bytes = "1"
 
- toml = "0.5.8"
 
- dashmap = "4.0"
 
- log = "0.4.14"
 
- # tracing
 
- tracing = { version = "0.1", features = ["log"] }
 
- tracing-futures = "0.2.4"
 
- tracing-subscriber = { version = "0.2.12", features = ["registry", "env-filter", "ansi", "json"] }
 
- tracing-bunyan-formatter = "0.2.2"
 
- tracing-appender = "0.1"
 
- tracing-core = "0.1"
 
- tracing-log = { version = "0.1.1"}
 
- # serde
 
- serde_json = "1.0"
 
- serde = { version = "1.0", features = ["derive"] }
 
- serde_repr = "0.1"
 
- serde-aux = "1.0.1"
 
- derive_more = {version = "0.99"}
 
- protobuf = {version = "2.20.0"}
 
- uuid = { version = "0.8", features = ["serde", "v4"] }
 
- config = { version = "0.10.1", default-features = false, features = ["yaml"] }
 
- chrono = { version = "0.4", features = ["serde"] }
 
- anyhow = "1.0.40"
 
- thiserror = "1.0.24"
 
- bcrypt = "0.10"
 
- jsonwebtoken = "7.2"
 
- sql-builder = "3.1.1"
 
- lazy_static = "1.4"
 
- tokio = { version = "1", features = ["full"] }
 
- parking_lot = "0.11"
 
- md5 = "0.7.0"
 
- futures-core = { version = "0.3", default-features = false }
 
- pin-project = "1.0.0"
 
- byteorder = {version = "1.3.4"}
 
- async-stream = "0.3.2"
 
- flowy-user-data-model = { path = "../shared-lib/flowy-user-data-model" }
 
- flowy-core-data-model = { path = "../shared-lib/flowy-core-data-model" }
 
- flowy-collaboration = { path = "../shared-lib/flowy-collaboration" }
 
- lib-ws = { path = "../shared-lib/lib-ws" }
 
- lib-ot = { path = "../shared-lib/lib-ot" }
 
- lib-infra = { path = "../shared-lib/lib-infra" }
 
- backend-service = { path = "../shared-lib/backend-service", features = ["http_server"] }
 
- ormx = { version = "0.7", features = ["postgres"]}
 
- [dependencies.sqlx]
 
- version = "0.5.7"
 
- default-features = false
 
- features = [
 
-     "runtime-actix-rustls",
 
-     "macros",
 
-     "postgres",
 
-     "uuid",
 
-     "chrono",
 
-     "migrate",
 
-     "offline",
 
- ]
 
- [lib]
 
- path = "src/lib.rs"
 
- [[bin]]
 
- name = "backend"
 
- path = "src/main.rs"
 
- [features]
 
- flowy_test = []
 
- ignore_auth = []
 
- [dev-dependencies]
 
- parking_lot = "0.11"
 
- once_cell = "1.7.2"
 
- linkify = "0.5.0"
 
- futures-util = "0.3.15"
 
- backend = { path = ".", features = ["flowy_test"]}
 
- flowy-sdk = { path = "../frontend/rust-lib/flowy-sdk", features = ["http_server"] }
 
- flowy-user = { path = "../frontend/rust-lib/flowy-user", features = ["http_server"] }
 
- flowy-document = { path = "../frontend/rust-lib/flowy-document", features = ["flowy_unit_test", "http_server"] }
 
- flowy-test = { path = "../frontend/rust-lib/flowy-test" }
 
- flowy-net = { path = "../frontend/rust-lib/flowy-net", features = ["http_server"] }
 
 
  |