yggdrasil/Cargo.toml

14 lines
265 B
TOML
Raw Normal View History

2024-03-08 22:16:50 +02:00
[package]
2024-03-12 12:45:31 +02:00
name = "abi-generator"
2024-03-08 22:16:50 +02:00
version = "0.1.0"
edition = "2021"
[dependencies]
2024-03-09 15:49:42 +02:00
proc-macro2 = "^1.0.63"
quote = "^1.0"
syn = { version = "2.0.32", features = ["full"] }
thiserror = "1.0.47"
2024-03-08 22:16:50 +02:00
[workspace]
2024-03-12 12:45:31 +02:00
members = ["abi-lib", "example-abi", "abi-kernel-macros"]