2026-04-09 19:29:03 +02:00
|
|
|
[package]
|
|
|
|
|
name = "idl-gen"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
2026-05-06 17:08:15 -03:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2026-04-09 19:29:03 +02:00
|
|
|
[[bin]]
|
|
|
|
|
name = "idl-gen"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-05-18 13:02:32 +02:00
|
|
|
spel-framework-core = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", features = [
|
2026-04-09 19:29:03 +02:00
|
|
|
"idl-gen",
|
|
|
|
|
] }
|
2026-06-16 10:22:10 +02:00
|
|
|
# `preserve_order` keeps object keys in struct-declaration order when
|
|
|
|
|
# round-tripping through serde_json::Value (see main.rs), so the only
|
|
|
|
|
# reordering we apply is sorting the `types` array.
|
|
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2026-05-11 15:31:31 +02:00
|
|
|
toml = "0.8"
|