aboutsummaryrefslogtreecommitdiff
path: root/src/rust/rand/Cargo.toml
diff options
context:
space:
mode:
authorIsis Lovecruft <isis@torproject.org>2018-05-15 02:02:02 +0000
committerIsis Lovecruft <isis@torproject.org>2018-05-15 17:48:57 +0000
commit9988882c6399b9b54d50f22617f3358bec4cb89b (patch)
tree55e9dbfae6b2a3080be4fad205e28f211f584a4c /src/rust/rand/Cargo.toml
parent2ac849da36ade48ae1d8cd7e1546549615785ae3 (diff)
downloadtor-9988882c6399b9b54d50f22617f3358bec4cb89b.tar.gz
tor-9988882c6399b9b54d50f22617f3358bec4cb89b.zip
rust: Move rand crate into crypto parent crate.
Diffstat (limited to 'src/rust/rand/Cargo.toml')
-rw-r--r--src/rust/rand/Cargo.toml27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/rust/rand/Cargo.toml b/src/rust/rand/Cargo.toml
deleted file mode 100644
index b5bbf5c1b6..0000000000
--- a/src/rust/rand/Cargo.toml
+++ /dev/null
@@ -1,27 +0,0 @@
-# TODO: Note that this package should be merged into the "crypto" crate after #24659 is merged.
-
-[package]
-authors = ["The Tor Project"]
-version = "0.0.1"
-name = "rand"
-publish = false
-
-[features]
-testing = ["tor_log/testing"]
-
-[dependencies]
-libc = "=0.2.39"
-rand_core = "=0.1.0"
-
-external = { path = "../external" }
-tor_allocate = { path = "../tor_allocate" }
-tor_log = { path = "../tor_log" }
-tor_util = { path = "../tor_util" }
-
-[dev-dependencies]
-rand = { version = "=0.5.0-pre.1", default-features = false }
-
-[lib]
-name = "rand"
-path = "lib.rs"
-crate_type = ["rlib", "staticlib"]