aboutsummaryrefslogtreecommitdiff
path: root/src/rust/rand/Cargo.toml
blob: 1b73563c8dd14d3044469c32db22fce4458ba416 (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
# 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.0", default-features = false, path = "../../ext/rust/vendor/rand-8c5b0ac51d" }

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