mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
aa5f052ecf
* chore: fix wanrings * chore: remove protobuf ref in flowy-error-code * chore: remove protobuf ref in lib-ws * refactor: remove protobuf trait in flowy http model * refactor: remove flowy-error-code crate Co-authored-by: nathan <nathan@appflowy.io>
31 lines
651 B
TOML
31 lines
651 B
TOML
[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]
|
|
syn = { version = "1.0.60", features = ["extra-traits", "visit"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
flowy-ast = { path = "../flowy-ast" }
|
|
lazy_static = {version = "1.4.0"}
|
|
dashmap = "5"
|
|
flowy-codegen = { path = "../flowy-codegen"}
|
|
serde_json = "1.0"
|
|
walkdir = "2.3.1"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
trybuild = "1.0.40"
|
|
log = "0.4.11"
|