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]
|
2025-01-16 18:06:00 +02:00
|
|
|
cross.workspace = true
|
2025-02-19 22:06:29 +02:00
|
|
|
yggdrasil-rt.workspace = true
|
|
|
|
logsink.workspace = true
|
|
|
|
|
|
|
|
log.workspace = true
|
2024-10-30 21:13:41 +02:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|