AppFlowy/shared-lib/flowy-grid-data-model/Cargo.toml

25 lines
653 B
TOML
Raw Normal View History

2022-03-02 13:12:21 +00: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 10:13:40 +00:00
serde = { version = "1.0", features = ["derive", "rc"] }
2022-03-04 10:11:12 +00:00
serde_json = {version = "1.0"}
serde_repr = "0.1"
2022-04-11 07:27:03 +00:00
nanoid = "0.4.0"
2022-03-18 09:14:46 +00:00
flowy-error-code = { path = "../flowy-error-code"}
2022-10-01 03:00:15 +00:00
indexmap = {version = "1.9.1", features = ["serde"]}
tracing = { version = "0.1", features = ["log"] }
2022-03-02 13:12:21 +00:00
[build-dependencies]
lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
[features]
default = []
backend = []
frontend = []
dart = ["lib-infra/dart"]