-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
23 lines (22 loc) · 986 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "nsh"
version = "0.2.0"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "Secure remote shell based on Noise stream encryption"
repository = "https://github.com/Cyphernet-DAO/nsh"
keywords = ["cyphernet", "noise_xk", "privacy", "cryptography", "shell"]
categories = ["network-programming", "cryptography", "command-line-utilities"]
license = "MIT"
edition = "2021"
rust-version = "1.59.0"
[dependencies]
amplify = "4.6.0"
io-reactor = { version = "0.5.1", features = ["log"] }
netservices = { version = "0.8.0", features = ["reactor", "log", "eidolon"] }
cyphernet = { version = "0.5.2", features = ["noise_x25519", "ed25519", "noise_sha2", "p2p-ed25519", "dns", "mixnets", "multibase", "eidolon"] }
ec25519 = { version = "0.1.0", features = ["pem", "random", "ed25519"] }
clap = { version = "4.5.4", features = ["derive"] }
shellexpand = "3.1.0"
crossbeam-channel = "0.5.12"
log = { version = "0.4.21", features = ["std"] }
env_logger = "0.11.3"