2024-10-31 13:14:07 +02:00
|
|
|
[package]
|
|
|
|
name = "rsh"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rshd"
|
|
|
|
path = "src/rshd/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libterm.workspace = true
|
|
|
|
cross.workspace = true
|
2024-11-02 01:00:42 +02:00
|
|
|
|
|
|
|
clap.workspace = true
|
|
|
|
thiserror.workspace = true
|
2024-10-31 13:14:07 +02:00
|
|
|
bytemuck.workspace = true
|
2024-11-02 01:00:42 +02:00
|
|
|
x25519-dalek.workspace = true
|
2024-11-02 19:17:32 +02:00
|
|
|
ed25519-dalek = { workspace = true, features = ["rand_core", "pem"] }
|
|
|
|
sha2.workspace = true
|
2024-11-04 16:29:09 +02:00
|
|
|
log.workspace = true
|
2024-11-02 19:17:32 +02:00
|
|
|
|
2024-11-02 01:00:42 +02:00
|
|
|
rand = { git = "https://git.alnyan.me/yggdrasil/rand.git", branch = "alnyan/yggdrasil-rng_core-0.6.4" }
|
|
|
|
aes = { version = "0.8.4" }
|
2024-11-02 14:22:01 +02:00
|
|
|
env_logger = "0.11.5"
|
2025-01-03 19:06:16 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|