2021-07-04 15:31:33 +00:00
|
|
|
[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"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-03 12:38:31 +00:00
|
|
|
syn = { version = "1.0.109", features = ["extra-traits", "visit"] }
|
2021-07-04 15:31:33 +00:00
|
|
|
quote = "1.0"
|
|
|
|
proc-macro2 = "1.0"
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-ast.workspace = true
|
2024-08-11 12:39:25 +00:00
|
|
|
lazy_static = { version = "1.4.0" }
|
|
|
|
dashmap.workspace = true
|
2023-12-30 23:29:40 +00:00
|
|
|
flowy-codegen.workspace = true
|
2023-11-12 13:18:27 +00:00
|
|
|
serde_json.workspace = true
|
2023-03-03 12:38:31 +00:00
|
|
|
walkdir = "2.3.2"
|