18 lines
333 B
TOML
18 lines
333 B
TOML
[package]
|
|
name = "init"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# 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]
|
|
yggdrasil-rt = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-rt.git" }
|