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" }
|
2022-03-19 08:52:28 +00:00
|
|
|
flowy-revision = { path = "../flowy-revision" }
|
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" }
|
2022-03-19 08:52:28 +00:00
|
|
|
flowy-sync = { path = "../../../shared-lib/flowy-sync" }
|
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"
|
2022-04-11 07:27:03 +00:00
|
|
|
nanoid = "0.4.0"
|
2022-03-03 14:17:07 +00:00
|
|
|
bytes = { version = "1.0" }
|
2022-03-04 10:11:12 +00:00
|
|
|
diesel = {version = "1.4.8", features = ["sqlite"]}
|
2022-06-14 00:37:44 +00:00
|
|
|
dashmap = "5"
|
2022-03-05 02:59:44 +00:00
|
|
|
tokio = {version = "1", features = ["sync"]}
|
2022-04-28 13:16:28 +00:00
|
|
|
rayon = "1.5.2"
|
2022-03-12 14:52:24 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = {version = "1.0"}
|
2022-03-31 06:43:31 +00:00
|
|
|
serde_repr = "0.1"
|
2022-04-11 06:09:50 +00:00
|
|
|
indexmap = {version = "1.8.1", features = ["serde"]}
|
2022-05-29 02:56:34 +00:00
|
|
|
fancy-regex = "0.10.0"
|
2022-06-14 00:46:11 +00:00
|
|
|
regex = "1.5.6"
|
2022-05-29 13:47:38 +00:00
|
|
|
url = { version = "2"}
|
2022-06-06 12:06:08 +00:00
|
|
|
futures = "0.3.15"
|
2022-06-29 05:44:15 +00:00
|
|
|
atomic_refcell = "0.1.8"
|
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]
|
2022-07-20 10:27:12 +00:00
|
|
|
default = []
|
2022-03-12 13:06:15 +00:00
|
|
|
dart = ["lib-infra/dart"]
|
2022-03-19 08:52:28 +00:00
|
|
|
flowy_unit_test = ["flowy-revision/flowy_unit_test"]
|