2022-03-02 07:10:53 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-grid"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-02 14:43:04 +00:00
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
2022-03-04 10:11:12 +00:00
|
|
|
dart-notify = { path = "../dart-notify" }
|
|
|
|
flowy-sync = { path = "../flowy-sync" }
|
2022-03-04 13:26:32 +00:00
|
|
|
flowy-error = { path = "../flowy-error", features = ["db"]}
|
2022-03-04 10:11:12 +00:00
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
|
|
|
lib-ot = { path = "../../../shared-lib/lib-ot" }
|
|
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
|
|
|
flowy-grid-data-model = { path = "../../../shared-lib/flowy-grid-data-model" }
|
|
|
|
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration" }
|
2022-03-04 13:26:32 +00:00
|
|
|
flowy-database = { path = "../flowy-database" }
|
2022-03-04 10:11:12 +00:00
|
|
|
|
2022-03-02 14:43:04 +00:00
|
|
|
strum = "0.21"
|
|
|
|
strum_macros = "0.21"
|
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|
|
protobuf = {version = "2.18.0"}
|
2022-03-03 14:17:07 +00:00
|
|
|
rust_decimal = "1.8.1"
|
|
|
|
rusty-money = {version = "0.4.0", features = ["iso"]}
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
chrono = "0.4.19"
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
|
|
bytes = { version = "1.0" }
|
2022-03-04 10:11:12 +00:00
|
|
|
diesel = {version = "1.4.8", features = ["sqlite"]}
|
2022-03-04 14:09:16 +00:00
|
|
|
dashmap = "4.0"
|
2022-03-05 02:59:44 +00:00
|
|
|
tokio = {version = "1", features = ["sync"]}
|
2022-03-05 09:52:25 +00:00
|
|
|
rayon = "1.5"
|
2022-03-12 14:52:24 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = {version = "1.0"}
|
2022-03-02 14:43:04 +00:00
|
|
|
|
2022-03-12 13:06:15 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
flowy-test = { path = "../flowy-test" }
|
|
|
|
flowy-grid = { path = "../flowy-grid", features = ["flowy_unit_test"]}
|
|
|
|
|
2022-03-02 14:43:04 +00:00
|
|
|
[build-dependencies]
|
|
|
|
lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen", "proto_gen"] }
|
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2022-03-12 13:06:15 +00:00
|
|
|
dart = ["lib-infra/dart"]
|
|
|
|
flowy_unit_test = ["flowy-sync/flowy_unit_test"]
|