2021-06-29 08:52:29 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-user"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-17 01:49:39 +00:00
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-sqlite = { workspace = true, optional = true }
|
|
|
|
flowy-encrypt = { workspace = true }
|
|
|
|
flowy-error = { workspace = true, features = ["impl_from_sqlite", "impl_from_dispatch_error"] }
|
|
|
|
flowy-folder-deps = { workspace = true }
|
2022-03-19 08:23:34 +00:00
|
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-notification = { workspace = true }
|
|
|
|
flowy-server-config = { workspace = true }
|
|
|
|
lib-dispatch = { workspace = true }
|
|
|
|
collab-integrate = { workspace = true }
|
2023-07-14 05:37:13 +00:00
|
|
|
collab = { version = "0.1.0" }
|
|
|
|
collab-folder = { version = "0.1.0" }
|
2023-08-03 01:14:52 +00:00
|
|
|
collab-document = { version = "0.1.0" }
|
2023-08-28 05:28:24 +00:00
|
|
|
collab-database = { version = "0.1.0" }
|
2023-08-14 04:57:59 +00:00
|
|
|
collab-user = { version = "0.1.0" }
|
2023-10-10 11:05:55 +00:00
|
|
|
collab-entity = { version = "0.1.0" }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-user-deps = { workspace = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
serde_repr.workspace = true
|
|
|
|
protobuf.workspace = true
|
2021-07-06 06:14:47 +00:00
|
|
|
lazy_static = "1.4.0"
|
2023-11-12 13:18:27 +00:00
|
|
|
diesel.workspace = true
|
2023-12-23 15:27:15 +00:00
|
|
|
diesel_derives = { version = "2.1.0", features = ["sqlite", "r2d2"] }
|
2023-03-03 12:38:31 +00:00
|
|
|
once_cell = "1.17.1"
|
2023-11-12 13:18:27 +00:00
|
|
|
parking_lot.workspace = true
|
2023-10-02 07:12:24 +00:00
|
|
|
strum = "0.25"
|
|
|
|
strum_macros = "0.25.2"
|
2023-11-12 13:18:27 +00:00
|
|
|
tokio = { workspace = true, features = ["rt"] }
|
2023-05-17 01:49:39 +00:00
|
|
|
validator = "0.16.0"
|
|
|
|
unicode-segmentation = "1.10"
|
|
|
|
fancy-regex = "0.11.0"
|
2023-11-12 13:18:27 +00:00
|
|
|
uuid.workspace = true
|
|
|
|
chrono = { workspace = true, default-features = false, features = ["clock"] }
|
2023-07-29 01:46:24 +00:00
|
|
|
base64 = "^0.21"
|
2023-10-10 11:05:55 +00:00
|
|
|
tokio-stream = "0.1.14"
|
2021-07-24 10:55:13 +00:00
|
|
|
|
2021-06-29 15:21:25 +00:00
|
|
|
[dev-dependencies]
|
2022-04-11 07:27:03 +00:00
|
|
|
nanoid = "0.4.0"
|
2023-05-17 01:49:39 +00:00
|
|
|
fake = "2.0.0"
|
|
|
|
rand = "0.8.4"
|
|
|
|
quickcheck = "1.0.3"
|
|
|
|
rand_core = "0.6.2"
|
|
|
|
quickcheck_macros = "1.0"
|
2021-08-20 06:38:03 +00:00
|
|
|
|
|
|
|
[features]
|
2023-01-31 11:30:48 +00:00
|
|
|
default = ["rev-sqlite"]
|
2023-01-31 00:28:31 +00:00
|
|
|
rev-sqlite = ["flowy-sqlite"]
|
2023-01-26 07:40:23 +00:00
|
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
|
|
|
ts = ["flowy-codegen/ts", "flowy-notification/ts"]
|
2022-02-08 06:36:59 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-10-02 07:12:24 +00:00
|
|
|
flowy-codegen = { path = "../../../shared-lib/flowy-codegen" }
|