28 lines
571 B
TOML
28 lines
571 B
TOML
[package]
|
|
name = "rsh"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "rshd"
|
|
path = "src/rshd/main.rs"
|
|
|
|
[dependencies]
|
|
libterm.workspace = true
|
|
cross.workspace = true
|
|
|
|
clap.workspace = true
|
|
thiserror.workspace = true
|
|
bytemuck.workspace = true
|
|
x25519-dalek.workspace = true
|
|
ed25519-dalek = { workspace = true, features = ["rand_core", "pem"] }
|
|
sha2.workspace = true
|
|
log.workspace = true
|
|
|
|
rand = { git = "https://git.alnyan.me/yggdrasil/rand.git", branch = "alnyan/yggdrasil-rng_core-0.6.4" }
|
|
aes = { version = "0.8.4" }
|
|
env_logger = "0.11.5"
|
|
|
|
[lints]
|
|
workspace = true
|