-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (64 loc) · 1.44 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "wala"
version = "0.1.7"
edition = "2021"
rust-version = "1.67"
license = "GPL-3.0-or-later"
documentation = "https://defalsify.org/doc/crates/wala/0.1.0/wala"
description = "Content-adressed HTTP file server"
repository = "https://git.defalsify.org/wala"
# from https://crates.io/category_slugs
categories = ["web-programming::http-server"]
[[bin]]
name = 'wala_send'
path = 'src/wala_send/main.rs'
required_features = 'client'
doc = true
[[bin]]
name = 'wala'
path = 'src/main.rs'
doc = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tiny_http = "^0.7.0"
env_logger = "^0.9"
log = "^0.4"
sha2 = "^0.10"
hex = "^0.4"
tempfile = "^3.3.0"
mime = "^0.3.13"
ascii = "^1.0.0"
clap = "^2.34.0"
url = "^2.2.2"
[dependencies.tree_magic]
version = "^0.2.3"
features = ["cli"]
optional = true
#[dependencies.pgp]
#version = "^0.7.2"
#optional = true
[dependencies.nettle]
version = "7.2.0"
optional = true
[dependencies.base64]
version = "^0.13.0"
optional = true
[dependencies.ureq]
version = "^2.5.0"
optional = true
[dependencies.sequoia-openpgp]
version = "^1.10.0"
optional = true
[dependencies.rpassword]
version = "^7.0.0"
optional = true
[dependencies.signal-hook]
version = "^0.3.15"
optional = true
[features]
pgpauth = ["sequoia-openpgp", "base64", "nettle"]
dev = []
magic = ["tree_magic"]
meta = []
trace = []
client = ["ureq", "sequoia-openpgp", "rpassword", "base64"]