summaryrefslogtreecommitdiff
path: root/src/rust
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-10-01 22:57:38 -0700
committerAlex Crichton <alex@alexcrichton.com>2018-10-01 22:57:38 -0700
commit757a2360a41a5de2abd283ddee9fd26bb045bc04 (patch)
tree689d2b035526a9c6a89b0eb0ddf519733a8992fc /src/rust
parent74c1e44746a7d9c810f095177af88b7dbaafd3e3 (diff)
downloadtor-757a2360a41a5de2abd283ddee9fd26bb045bc04.tar.gz
tor-757a2360a41a5de2abd283ddee9fd26bb045bc04.zip
Remove `[features]` from workspace Cargo.toml
Unfortunately Cargo doesn't actually parse these! Cargo should probably print a warning saying they're not used...
Diffstat (limited to 'src/rust')
-rw-r--r--src/rust/Cargo.toml16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index e399dbb33a..83f9629660 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -13,19 +13,3 @@ members = [
[profile.release]
debug = true
panic = "abort"
-
-[features]
-default = []
-# If this feature is enabled, test code which calls Tor C code from Rust will
-# execute with `cargo test`. Due to numerous linker issues (#25386), this is
-# currently disabled by default. Crates listed here are those which, in their
-# unittests, doctests, and/or integration tests, call C code.
-test-c-from-rust = [
- "crypto/test-c-from-rust",
-]
-
-# 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 = []