AppFlowy/shared-lib/flowy-derive/Cargo.toml

30 lines
649 B
TOML
Raw Normal View History

[package]
name = "flowy-derive"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
name = "flowy_derive"
[[test]]
name = "tests"
path = "tests/progress.rs"
[dependencies]
2023-03-03 12:38:31 +00:00
syn = { version = "1.0.109", features = ["extra-traits", "visit"] }
quote = "1.0"
proc-macro2 = "1.0"
flowy-ast = { path = "../flowy-ast" }
2022-02-09 05:08:49 +00:00
lazy_static = {version = "1.4.0"}
2022-06-14 00:37:44 +00:00
dashmap = "5"
flowy-codegen = { path = "../flowy-codegen"}
serde_json.workspace = true
2023-03-03 12:38:31 +00:00
walkdir = "2.3.2"
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
2023-03-03 12:38:31 +00:00
trybuild = "1.0.77"