-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
42 lines (35 loc) · 966 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "narnia"
version = "0.4.0"
description = "Secure hidden service webserver"
authors = ["kpcyrd <[email protected]>"]
license = "GPL-3.0"
repository = "https://github.com/kpcyrd/narnia"
categories = ["command-line-utilities"]
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
vendored = ["libtor/vendored-openssl"]
[dependencies]
actix-files = "0.6"
actix-web = "4"
anyhow = "1.0.40"
cfg-if = "1.0.0"
clap = { version = "3.1.18", features = ["derive", "env"] }
env_logger = "0.9"
htmlescape = "0.3.1"
libtor = "47"
log = "0.4.14"
nix = "0.24"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
[target.'cfg(target_os = "linux")'.dependencies]
caps = "0.5.1"
[target.'cfg(target_os = "openbsd")'.dependencies]
pledge = "0.4.1"
unveil = "0.3.0"
[target.'cfg(unix)'.dependencies]
users = "0.11.0"
[dev-dependencies]
test-case = "2"