aboutsummaryrefslogtreecommitdiff
path: root/src/rust/tor_rust/Cargo.toml
blob: 1523ee0dd1185f75c9716af3c138238a16a4bc85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
authors = ["The Tor Project"]
name = "tor_rust"
version = "0.1.0"

[lib]
name = "tor_rust"
path = "lib.rs"
crate_type = ["rlib", "staticlib"]

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

[dependencies.protover]
path = "../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 = []