mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
27 lines
709 B
TOML
27 lines
709 B
TOML
[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]
|
|
flowy-derive = { path = "../flowy-derive" }
|
|
protobuf = {version = "2.18.0"}
|
|
bytes = "1.0"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = {version = "1.0"}
|
|
serde_repr = "0.1"
|
|
nanoid = "0.4.0"
|
|
flowy-error-code = { path = "../flowy-error-code"}
|
|
indexmap = {version = "1.8.1", features = ["serde"]}
|
|
[build-dependencies]
|
|
lib-infra = { path = "../lib-infra", features = ["protobuf_file_gen"] }
|
|
|
|
[features]
|
|
default = []
|
|
backend = []
|
|
frontend = []
|
|
dart = ["lib-infra/dart"] |