Rename all crates, CLI commands, constants, type names, doc comments, and documentation from wraith to alknet. Includes wire-protocol changes: ALPN wraith-ssh -> alknet-ssh, reserved destination prefix wraith- -> alknet-, SSH auth username wraith -> alknet.
29 lines
988 B
TOML
29 lines
988 B
TOML
[package]
|
|
name = "alknet"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "CLI binary for Alknet: self-hostable SSH tunnel tool with pluggable transports"
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "alknet"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = ["tls", "iroh"]
|
|
tls = ["alknet-core/tls", "dep:rustls-pemfile", "dep:rustls-pki-types"]
|
|
iroh = ["alknet-core/iroh", "dep:iroh", "dep:url"]
|
|
acme = ["alknet-core/acme", "dep:rustls-acme", "dep:rustls", "tls"]
|
|
|
|
[dependencies]
|
|
alknet-core = { path = "../alknet-core" }
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1"
|
|
iroh = { version = "0.34", optional = true }
|
|
url = { version = "2", optional = true }
|
|
rustls-acme = { version = "0.12", optional = true }
|
|
rustls = { version = "0.23", optional = true, features = ["aws_lc_rs"] }
|
|
rustls-pemfile = { version = "2", optional = true }
|
|
rustls-pki-types = { version = "1", optional = true } |