forked from mirrors/nixpkgs
74 lines
1.8 KiB
Diff
74 lines
1.8 KiB
Diff
diff --git a/Cargo.lock b/Cargo.lock
|
|
new file mode 100644
|
|
index 0000000..0268b3b
|
|
--- /dev/null
|
|
+++ b/Cargo.lock
|
|
@@ -0,0 +1,67 @@
|
|
+# This file is automatically @generated by Cargo.
|
|
+# It is not intended for manual editing.
|
|
+version = 3
|
|
+
|
|
+[[package]]
|
|
+name = "arbitrary"
|
|
+version = "1.0.1"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "237430fd6ed3740afe94eefcc278ae21e050285be882804e0d6e8695f0c94691"
|
|
+
|
|
+[[package]]
|
|
+name = "cc"
|
|
+version = "1.0.69"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
|
|
+
|
|
+[[package]]
|
|
+name = "compiler_builtins"
|
|
+version = "0.1.49"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "20b1438ef42c655665a8ab2c1c6d605a305f031d38d9be689ddfef41a20f3aa2"
|
|
+
|
|
+[[package]]
|
|
+name = "libfuzzer-sys"
|
|
+version = "0.4.2"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "36a9a84a6e8b55dfefb04235e55edb2b9a2a18488fcae777a6bdaa6f06f1deb3"
|
|
+dependencies = [
|
|
+ "arbitrary",
|
|
+ "cc",
|
|
+ "once_cell",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "once_cell"
|
|
+version = "1.8.0"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
|
|
+
|
|
+[[package]]
|
|
+name = "rustc-demangle"
|
|
+version = "0.1.20"
|
|
+dependencies = [
|
|
+ "compiler_builtins",
|
|
+ "rustc-std-workspace-core",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "rustc-demangle-capi"
|
|
+version = "0.1.0"
|
|
+dependencies = [
|
|
+ "rustc-demangle",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "rustc-demangle-fuzz"
|
|
+version = "0.0.0"
|
|
+dependencies = [
|
|
+ "libfuzzer-sys",
|
|
+ "rustc-demangle",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "rustc-std-workspace-core"
|
|
+version = "1.0.0"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "1956f5517128a2b6f23ab2dadf1a976f4f5b27962e7724c2bf3d45e539ec098c"
|