Bug 1909613 - Enable <details name=''> everywhere, r=emilio
[gecko.git] / third_party / rust / rand_core / Cargo.toml
blobfd8c96d9bcb8c1a55c62f5b1ba8b715b8d99e2cf
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g., crates.io) dependencies.
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
12 [package]
13 edition = "2018"
14 name = "rand_core"
15 version = "0.6.4"
16 authors = [
17     "The Rand Project Developers",
18     "The Rust Project Developers",
20 description = """
21 Core random number generator traits and tools for implementation.
22 """
23 homepage = "https://rust-random.github.io/book"
24 documentation = "https://docs.rs/rand_core"
25 readme = "README.md"
26 keywords = [
27     "random",
28     "rng",
30 categories = [
31     "algorithms",
32     "no-std",
34 license = "MIT OR Apache-2.0"
35 repository = "https://github.com/rust-random/rand"
37 [package.metadata.docs.rs]
38 all-features = true
39 rustdoc-args = [
40     "--cfg",
41     "doc_cfg",
44 [package.metadata.playground]
45 all-features = true
47 [dependencies.getrandom]
48 version = "0.2"
49 optional = true
51 [dependencies.serde]
52 version = "1"
53 features = ["derive"]
54 optional = true
56 [features]
57 alloc = []
58 serde1 = ["serde"]
59 std = [
60     "alloc",
61     "getrandom",
62     "getrandom/std",