21 lines
426 B
TOML
Raw Permalink Normal View History

2023-07-19 21:57:18 +03:00
[package]
name = "init"
version = "0.1.0"
edition = "2021"
2023-12-11 03:05:17 +02:00
authors = ["Mark Poliakov <mark@alnyan.me>"]
2023-07-19 21:57:18 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-07-27 16:25:26 +03:00
[[bin]]
name = "init"
path = "src/main.rs"
[[bin]]
name = "rc"
path = "src/rc.rs"
2023-07-19 21:57:18 +03:00
[dependencies]
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2024-03-12 18:17:47 +02:00
yggdrasil-rt = { path = "../../lib/runtime" }