aboutsummaryrefslogtreecommitdiff
path: root/src/rust/protover/Cargo.toml
blob: 84a7c71c1ad0d5b735a88e49189ff8b435b91b43 (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
[package]
authors = ["The Tor Project"]
version = "0.0.1"
name = "protover"

[features]
# We have to define a feature here because doctests don't get cfg(test),
# and we need to disable some C dependencies when running the doctests
# because of the various linker issues.  See
# https://github.com/rust-lang/rust/issues/45599
test_linking_hack = []

[dependencies]
libc = "=0.2.39"

[dependencies.smartlist]
path = "../smartlist"

[dependencies.external]
path = "../external"

[dependencies.tor_util]
path = "../tor_util"

[dependencies.tor_allocate]
path = "../tor_allocate"

[dependencies.tor_log]
path = "../tor_log"

[lib]
name = "protover"
path = "lib.rs"