2022-02-19 17:30:38 +01:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-02-28 23:19:21 +01:00
|
|
|
"sing_macros",
|
2022-02-19 17:30:38 +01:00
|
|
|
"sing_parse",
|
2022-02-28 23:19:21 +01:00
|
|
|
"sing_util",
|
2022-02-19 17:30:38 +01:00
|
|
|
]
|
2022-02-19 11:37:31 +01:00
|
|
|
|
2022-02-28 23:19:21 +01:00
|
|
|
[package]
|
|
|
|
name = "sing"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2022-02-19 11:37:31 +01:00
|
|
|
|
2022-02-19 17:30:38 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# build = "build.rs"
|
|
|
|
#
|
|
|
|
# [build-dependencies]
|
|
|
|
# lalrpop = "0.19"
|
|
|
|
#
|
2022-02-28 23:19:21 +01:00
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
|