yggdrasil/Cargo.toml

14 lines
259 B
TOML
Raw Normal View History

2024-03-08 22:16:50 +02:00
[package]
name = "syscall-generator"
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-09 16:42:07 +02:00
members = [ "abi-lib","example-abi", "handler"]