• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
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.
7#
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.
11
12[package]
13edition = "2018"
14name = "rand_core"
15version = "0.6.4"
16authors = [
17    "The Rand Project Developers",
18    "The Rust Project Developers",
19]
20description = """
21Core random number generator traits and tools for implementation.
22"""
23homepage = "https://rust-random.github.io/book"
24documentation = "https://docs.rs/rand_core"
25readme = "README.md"
26keywords = [
27    "random",
28    "rng",
29]
30categories = [
31    "algorithms",
32    "no-std",
33]
34license = "MIT OR Apache-2.0"
35repository = "https://github.com/rust-random/rand"
36
37[package.metadata.docs.rs]
38all-features = true
39rustdoc-args = [
40    "--cfg",
41    "doc_cfg",
42]
43
44[package.metadata.playground]
45all-features = true
46
47[dependencies.getrandom]
48version = "0.2"
49optional = true
50
51[dependencies.serde]
52version = "1"
53features = ["derive"]
54optional = true
55
56[features]
57alloc = []
58serde1 = ["serde"]
59std = [
60    "alloc",
61    "getrandom",
62    "getrandom/std",
63]
64