summaryrefslogtreecommitdiff
path: root/etc/deps-rust/TARGETS.rand-0.8.5
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2024-06-26 15:46:09 +0200
committerKlaus T. Aehlig <aehlig@linta.de>2024-06-27 12:05:35 +0200
commitc6b35f8f2e83621b4e53ab999e5b5bf146a73aa0 (patch)
tree2c607815866fdb7887dc5486255d2a7729f23578 /etc/deps-rust/TARGETS.rand-0.8.5
parentd5e14989a76f346789622fce27e3c63c217792cb (diff)
downloadhello-nix-c6b35f8f2e83621b4e53ab999e5b5bf146a73aa0.tar.gz
Add minimal example using cargo
... including a test (for which we add python3 as test dependency).
Diffstat (limited to 'etc/deps-rust/TARGETS.rand-0.8.5')
-rw-r--r--etc/deps-rust/TARGETS.rand-0.8.574
1 files changed, 74 insertions, 0 deletions
diff --git a/etc/deps-rust/TARGETS.rand-0.8.5 b/etc/deps-rust/TARGETS.rand-0.8.5
new file mode 100644
index 0000000..be9e720
--- /dev/null
+++ b/etc/deps-rust/TARGETS.rand-0.8.5
@@ -0,0 +1,74 @@
+{ "rand":
+ { "type": "export"
+ , "target": "rand-internal"
+ , "flexible_config":
+ ["ARCH", "HOST_ARCH", "TARGET_ARCH", "ENV", "TOOLCHAIN_CONFIG"]
+ }
+, "rand-internal":
+ { "type": ["@", "rules", "rust", "library"]
+ , "name": ["rand"]
+ , "crate_root": ["src/lib.rs"]
+ , "srcs":
+ [ "src/rng.rs"
+ , "src/prelude.rs"
+ , "src/lib.rs"
+ , "src/distributions/distribution.rs"
+ , "src/distributions/uniform.rs"
+ , "src/distributions/weighted.rs"
+ , "src/distributions/other.rs"
+ , "src/distributions/weighted_index.rs"
+ , "src/distributions/bernoulli.rs"
+ , "src/distributions/integer.rs"
+ , "src/distributions/float.rs"
+ , "src/distributions/utils.rs"
+ , "src/distributions/slice.rs"
+ , "src/distributions/mod.rs"
+ , "src/seq/index.rs"
+ , "src/seq/mod.rs"
+ , "src/rngs/small.rs"
+ , "src/rngs/xoshiro128plusplus.rs"
+ , "src/rngs/thread.rs"
+ , "src/rngs/std.rs"
+ , "src/rngs/mock.rs"
+ , "src/rngs/xoshiro256plusplus.rs"
+ , "src/rngs/mod.rs"
+ , "src/rngs/adapter/read.rs"
+ , "src/rngs/adapter/reseeding.rs"
+ , "src/rngs/adapter/mod.rs"
+ ]
+ , "edition": ["2018"]
+ , "arguments_config":
+ ["ARCH", "HOST_ARCH", "TARGET_ARCH", "ENV", "TOOLCHAIN_CONFIG"]
+ , "deps":
+ [ ["@", "libc", "", "libc"]
+ , ["@", "rand_chacha", "", "rand_chacha"]
+ , ["@", "rand_core", "", "rand_core"]
+ ]
+ , "cargo_features":
+ ["alloc", "default", "getrandom", "libc", "rand_chacha", "std", "std_rng"]
+ , "stage": ["rand-0.8.5"]
+ , "version": ["0", "8", "5"]
+ , "pkg_name": ["rand"]
+ }
+, "alloc": {"type": ["@", "rules", "cargo", "feature"], "name": ["alloc"]}
+, "default": {"type": ["@", "rules", "cargo", "feature"], "name": ["default"]}
+, "getrandom":
+ {"type": ["@", "rules", "cargo", "feature"], "name": ["getrandom"]}
+, "libc": {"type": ["@", "rules", "cargo", "feature"], "name": ["libc"]}
+, "log": {"type": ["@", "rules", "cargo", "feature"], "name": ["log"]}
+, "min_const_gen":
+ {"type": ["@", "rules", "cargo", "feature"], "name": ["min_const_gen"]}
+, "nightly": {"type": ["@", "rules", "cargo", "feature"], "name": ["nightly"]}
+, "packed_simd":
+ {"type": ["@", "rules", "cargo", "feature"], "name": ["packed_simd"]}
+, "rand_chacha":
+ {"type": ["@", "rules", "cargo", "feature"], "name": ["rand_chacha"]}
+, "serde": {"type": ["@", "rules", "cargo", "feature"], "name": ["serde"]}
+, "serde1": {"type": ["@", "rules", "cargo", "feature"], "name": ["serde1"]}
+, "simd_support":
+ {"type": ["@", "rules", "cargo", "feature"], "name": ["simd_support"]}
+, "small_rng":
+ {"type": ["@", "rules", "cargo", "feature"], "name": ["small_rng"]}
+, "std": {"type": ["@", "rules", "cargo", "feature"], "name": ["std"]}
+, "std_rng": {"type": ["@", "rules", "cargo", "feature"], "name": ["std_rng"]}
+}