blob: 5408ba1b1da852f2123303792580715e45fcb1a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
[package]
name = "oxish"
version = "0.1.0-rc.1"
edition.workspace = true
rust-version.workspace = true
license = "Apache-2.0 OR MIT"
description = "Modern, memory-safe SSH server"
repository = "https://github.com/djc/oxish"
readme = "../README.md"
keywords = ["ssh", "protocol", "cryptography"]
categories = ["network-programming", "cryptography"]
[features]
default = ["graviola"]
aws-lc = ["dep:aws-lc"]
aws-lc-fips = ["aws-lc/fips"]
graviola = ["dep:graviola"]
[dependencies]
anyhow = { workspace = true }
aws-lc = { package = "oxish-aws-lc", version = "=0.1.0-rc.1", path = "../oxish-aws-lc", optional = true }
bitflags = { workspace = true }
clap = { workspace = true }
data-encoding = { workspace = true }
graviola = { package = "oxish-graviola", version = "=0.1.0-rc.1", path = "../oxish-graviola", optional = true }
libc = { workspace = true }
listenfd = { workspace = true }
proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
zeroize = { workspace = true }
[target.'cfg(unix)'.dependencies]
rustix = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }
[lints]
workspace = true
|