2022-03-02 21:12:21 +08:00
|
|
|
[package]
|
|
|
|
name = "flowy-grid-data-model"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytes = "1.0"
|
2022-06-24 18:13:40 +08:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-03-04 18:11:12 +08:00
|
|
|
serde_json = {version = "1.0"}
|
2022-04-09 11:55:00 +08:00
|
|
|
serde_repr = "0.1"
|
2022-04-11 15:27:03 +08:00
|
|
|
nanoid = "0.4.0"
|
2022-03-18 17:14:46 +08:00
|
|
|
flowy-error-code = { path = "../flowy-error-code"}
|
2022-10-01 11:00:15 +08:00
|
|
|
indexmap = {version = "1.9.1", features = ["serde"]}
|
2022-08-11 13:04:45 +08:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2022-07-01 20:32:11 +08:00
|
|
|
|
2022-03-02 21:12:21 +08:00
|
|
|
[build-dependencies]
|
|
|
|
lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
backend = []
|
|
|
|
frontend = []
|
|
|
|
dart = ["lib-infra/dart"]
|