21 lines
456 B
TOML
21 lines
456 B
TOML
[package]
|
|
name = "init"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "init"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "rc"
|
|
path = "src/rc.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
yggdrasil-rt = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-rt.git" }
|