-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (56 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
61 lines (56 loc) · 1.45 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "iroh-ssh"
description = "ssh without ip"
license = "MIT"
authors = ["Zacharias Boehler <rustonbsd@mailfence.com>"]
repository = "https://github.com/rustonbsd/iroh-ssh"
readme = "README.md"
keywords = ["networking"]
categories = ["network-programming"]
version = "0.2.10"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
iroh = "0.94"
ed25519-dalek = { version = "2.2.0", features = ["rand_core"] }
rand = "0.9"
tokio-stream = { version = "0.1.18", features = ["sync"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["fmt", "ansi"] }
tracing-appender = "0.2.4"
tokio = { version = "1.50.0", features = [
"macros",
"io-util",
"sync",
"rt",
] }
clap = { version = "4.6.0", features = ["derive"] }
homedir = "0.3.6"
whoami = "2.1.1"
z32 = "1.3"
runas = "1.2.0"
tempfile = "3.27.0"
self-runas = "0.1"
[target.'cfg(windows)'.dependencies.windows-service]
version = "0.8.0"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
"Win32_System_Power",
"Win32_System_RemoteDesktop",
"Win32_System_Services",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_UI_WindowsAndMessaging",
]
[target.'cfg(unix)'.dependencies.libc]
version = "0.2.183"
[profile.release]
opt-level = 3
lto = true
panic = "abort"